tools/templates/main.cpp
author Periklis Ntanasis <pntanasis@gmail.com>
Sun, 22 Sep 2013 05:33:00 +0300
branchspacecampaign
changeset 9643 cddb5de11af9
parent 359 59fbfc65fbda
permissions -rw-r--r--
fixed bug that didn't set TurnTimeLeft in first round if dialog not skipped

#include <QApplication>

#include "mainform.h"

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