tools/drawMapTest/main.cpp
author nemo
Sun, 05 Feb 2012 16:21:55 -0500
changeset 6628 0e6615c10a8a
parent 4425 2314bb0c433d
permissions -rw-r--r--
attempt to fix 3222bb0612ca - otherwise you are unable to start a second game without quitting the room.

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

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