tools/drawMapTest/main.cpp
author unc0rr
Sat, 26 Jan 2013 22:57:03 +0400
changeset 8438 64ac58abd02a
parent 4425 2314bb0c433d
permissions -rw-r--r--
Don't resend "team quit" message when client closes engine, then quits room: - Fixes server crashes when client had more than one team in game - Fixes game freeze when half of players quit game

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

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