tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 01 Sep 2018 23:03:56 +0200
changeset 13735 8092b54ba19d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Check for victory before stTurnReact. Fixes 382

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}