tools/drawMapTest/main.cpp
author unc0rr
Tue, 16 Oct 2012 00:05:58 +0400
changeset 7757 c20e6c80e249
parent 4425 2314bb0c433d
permissions -rw-r--r--
Don't accept ROUNDFINISHED message twice. Fixes game hangs when half of teams 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();
}