tools/drawMapTest/main.cpp
author unc0rr
Sat, 09 Feb 2013 00:11:14 +0400
changeset 8483 d5fd4d7a0bcc
parent 4425 2314bb0c433d
permissions -rw-r--r--
Also convert teams to complete game config. The whole feature is still untested at all.

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

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