tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 01 Oct 2017 01:48:30 +0200
changeset 12626 ca958a859322
parent 359 59fbfc65fbda
permissions -rw-r--r--
Change Highlander.cfg to select Default by default Because if you scroll through the list, you often end up with HedgeEditor being chosen as game scheme. xD

#include <QApplication>

#include "mainform.h"

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