tools/drawMapTest/main.cpp
author unc0rr
Fri, 04 Jul 2014 22:45:59 +0400
changeset 10350 4e919f7b9d92
parent 4425 2314bb0c433d
permissions -rw-r--r--
Don't pick up own team if only recieved synced teamback message. Fixes second rejoin desync (untested).

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

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