tools/drawMapTest/main.cpp
author unc0rr
Sat, 01 Nov 2014 00:23:22 +0300
branchqmlfrontend
changeset 10448 4cb727e029fa
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Allow to delete teams from config - Manage team colors (internally, no gui so far) - 'Play' button on local game page (works!)

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

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