tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 07 Mar 2018 22:47:55 +0100
changeset 13096 d78e65c66573
parent 11015 7a905f0070ce
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 "mainwindow.h"
#include <QApplication>

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

    return a.exec();
}