tools/drawMapTest/main.cpp
author sheepluva
Mon, 23 Mar 2015 02:03:45 +0100
changeset 10868 acb03a9712c3
parent 4425 2314bb0c433d
permissions -rw-r--r--
show correct default if current team is local team

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

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