tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 07 Mar 2018 10:44:30 +0100
changeset 13091 8d569c7b36a2
parent 4425 2314bb0c433d
permissions -rw-r--r--
Frontend: Lead first-time player to training page on start

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

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