tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 16 Apr 2017 02:10:36 +0200
changeset 12270 72032a9cfc0e
parent 359 59fbfc65fbda
permissions -rw-r--r--
Swap the preview of missions 2 and 3 in A Classic Fairytale They have been confused, it's pretty subtle

#include <QApplication>

#include "mainform.h"

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