tools/drawMapTest/main.cpp
author unc0rr
Mon, 14 Mar 2016 22:04:39 +0300
changeset 11605 dc8de75747f9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Do not check games lasting for more than 3 hours

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

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