tools/drawMapTest/main.cpp
author sheepluva
Tue, 26 Apr 2016 12:27:17 +0200
changeset 11703 607e2e43acf0
parent 4425 2314bb0c433d
permissions -rw-r--r--
cleaning up team divide mode code from last night a little

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

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