tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 01 Aug 2018 23:12:37 +0200
branch0.9.24
changeset 13588 c3d8469cc68e
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix SimpleMission failure to init GameFlags correctly Also fixes broken gfInfAttack in The Great Escape

#include <QApplication>

#include "mainform.h"

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