tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sat, 01 Sep 2018 21:47:08 +0200
changeset 13733 ae22928f2b01
parent 4425 2314bb0c433d
permissions -rw-r--r--
ASA, desert01: Disable hero control at first battle left from the hole, not right above it

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

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