tools/drawMapTest/main.cpp
author unc0rr
Sat, 29 Jun 2013 23:58:37 +0400
changeset 9304 3f4c3fc146c2
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix spectator desync in rare conditions (there was team which left during its turn, and last command with timestamp from it was '+')

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

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