tools/drawMapTest/main.cpp
author sheepluva
Sun, 23 Oct 2011 09:01:53 +0200
changeset 6190 1db2486e45f4
parent 4425 2314bb0c433d
permissions -rw-r--r--
potential fix for issue #217 (SigSegV while in game room in KillAllTeams - team list change?)

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

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