tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 26 Oct 2017 18:02:33 +0200
changeset 12774 eed03e531823
parent 4425 2314bb0c433d
permissions -rw-r--r--
ACF, mission 2: Fix various mission breakages when heroes died together with enemies

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

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