tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Mon, 25 Apr 2016 21:12:34 +0200
changeset 11700 ea1097d7bd27
parent 11015 7a905f0070ce
permissions -rw-r--r--
"divided teams" modifier will now work with more than 2 teams!

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

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

    return a.exec();
}