tools/templates/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 07 Mar 2018 22:47:55 +0100
changeset 13096 d78e65c66573
parent 359 59fbfc65fbda
permissions -rw-r--r--
Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode Allowed effect values: 0 = not active 1 = permanently active 2 = termporarily active (sniper rifle)

#include <QApplication>

#include "mainform.h"

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