tools/drawMapTest/main.cpp
author unc0rr
Sat, 05 Jul 2014 15:28:32 +0400 (2014-07-05)
changeset 10351 0eff41e9f63f
parent 4425 2314bb0c433d
permissions -rw-r--r--
Restore teams in teams list on rejoin, should fix issues with second rejoin.
#include <QtGui/QApplication>
#include "mainwindow.h"

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