tools/drawMapTest/main.cpp
author koda
Fri, 30 Sep 2011 10:54:10 +0200
changeset 6066 b624c30dbbb9
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix hats of the AI team file for ios

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

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