tools/drawMapTest/main.cpp
author Xeli
Sun, 21 Aug 2011 18:14:49 +0200
branchhedgeroid
changeset 5625 9add7b92c5f0
parent 4425 2314bb0c433d
permissions -rw-r--r--
Added a check for team count to prevent the engine from crashes when starting with <2 teams + changed the text in the Teams selection menu

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

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