tools/templates/main.cpp
author unc0rr
Wed, 16 Dec 2015 00:20:56 +0300
branchqmlfrontend
changeset 11458 8318e841648f
parent 359 59fbfc65fbda
permissions -rw-r--r--
Send full game config to the engine

#include <QApplication>

#include "mainform.h"

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