tools/drawMapTest/main.cpp
author Xeli
Fri, 19 Aug 2011 03:29:51 +0200
branchhedgeroid
changeset 5603 4e4a579a60af
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fixed crash which occured when entering the teamselection menu for the second time

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

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