tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 15 Jun 2017 15:50:23 +0200
changeset 12435 c461a224ec09
parent 11015 7a905f0070ce
permissions -rw-r--r--
Mutant: Fix turn skip of next hog after mutating when TurnTimeLeft = 0

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

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

    return a.exec();
}