tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Mon, 12 Feb 2018 20:47:45 +0100
changeset 12987 ba99ecc53cf0
parent 11015 7a905f0070ce
permissions -rw-r--r--
Battalion: Mutate hogs by default again, but not the names. Add script param mutatenames. Force crowns in King Mode

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

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

    return a.exec();
}