tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 23 Mar 2018 03:17:01 +0100
changeset 13272 5984e8c6cbeb
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add new game flag gfSwitchHog, enable hog switching at turn start

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

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

    return a.exec();
}