tools/drawMapTest/main.cpp
author sheepluva
Sun, 15 Jun 2014 04:33:54 +0200
changeset 10307 e13d3147f15b
parent 4425 2314bb0c433d
permissions -rw-r--r--
do not get stuck on "in game..." page just because of game crash. output a message instead. could still need some tweaking, but a man gotta sleep. and sheep too...

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

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