tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 11 Feb 2018 02:03:09 +0100
changeset 12975 dc35a79c6ef9
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix Killing the Specialists recording the turn count way too low

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

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

    return a.exec();
}