tools/drawMapTest/main.cpp
author unc0rr
Mon, 28 May 2012 22:42:59 +0400
changeset 7145 1d1a14b39400
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix a bug with wrong state of teams list when color isn't changed manually

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

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