tools/templates/main.cpp
author unc0rr
Thu, 04 Dec 2008 21:59:25 +0000
changeset 1528 3fee15104c1d
parent 359 59fbfc65fbda
permissions -rw-r--r--
More stable blowtorch: - Isn't affected by flying around hedgehogs - Doesn't turn off when hedgehog falls a bit

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}