tools/drawMapTest/main.cpp
author Xeli
Fri, 25 Nov 2011 19:36:03 +0100
changeset 6432 ffb18b44415d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Use proper names when storing custom teams, also fixes the bug which created new teams when you editted one of the default ones

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

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