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

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}