tools/drawMapTest/main.cpp
author sheepluva
Sat, 23 Apr 2016 11:51:21 +0200
changeset 11671 51c4ea6d7f91
parent 4425 2314bb0c433d
permissions -rw-r--r--
merge portal mission fixes by Wuzzy and restore accidently removed SetWind call

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

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