tools/drawMapTest/main.cpp
author sheepluva
Tue, 26 Apr 2016 15:19:36 +0200
changeset 11707 ecbf5e6c2c37
parent 4425 2314bb0c433d
permissions -rw-r--r--
also make forts face inwards in wrap mode, if there are only 2 teams

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

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