tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 19 Apr 2017 20:21:15 +0200
changeset 12287 faf1b93422ba
parent 11015 7a905f0070ce
permissions -rw-r--r--
Use new EndTurn in a couple of scripts, esp. to fix timeout taunts in Racer

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

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

    return a.exec();
}