tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Mon, 02 Oct 2017 20:59:40 +0200
changeset 12633 a791a08062d6
parent 4425 2314bb0c433d
permissions -rw-r--r--
Create 5 human teams + 5 AI teams on first start

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

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