tools/drawMapTest/main.cpp
author unc0rr
Sat, 13 Aug 2011 20:44:42 +0400
changeset 5555 38e3d9347910
parent 4425 2314bb0c433d
permissions -rw-r--r--
Don't switch to gsConfirm state (which is pretty same as gsGame) when not in gsGame or gsChat state. Prevents crashes and other possible kinds of wierd behaviour.

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

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