tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Sat, 30 Sep 2017 20:29:01 +0200
changeset 12619 2b529ddf1b01
parent 4425 2314bb0c433d
permissions -rw-r--r--
ASA, moon01, desert01: Enable skip for hero only if there is turn-based play

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

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