tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Tue, 24 Oct 2017 14:14:00 -0400
changeset 12758 327f71313e04
parent 11015 7a905f0070ce
permissions -rw-r--r--
this should probably sidestep that thing unc0rr keeps bringing up. untested. but then, I've never had it happen. I think what happens is onGameTick20 is called in same tick as onNewTurn and before it...

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

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

    return a.exec();
}