tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 27 Apr 2017 21:00:28 +0200
changeset 12361 05fe955e2763
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix engine crash in ACF mission 5 when skipping animation after killing wave 2 while the cyborg is talking Also harden the code against double function calls

#include <QApplication>

#include "mainform.h"

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