tools/templates/main.cpp
author unc0rr
Sun, 27 Nov 2011 23:13:22 +0300
changeset 6453 11c578d30bd3
parent 359 59fbfc65fbda
permissions -rw-r--r--
Countless imporvements to the parser and countless help to the parser in sources. Now parser is able to parse the whole engine \o/

#include <QApplication>

#include "mainform.h"

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