tools/drawMapTest/main.cpp
author nemo
Sat, 31 May 2014 15:04:26 -0400
changeset 10250 887610b44848
parent 4425 2314bb0c433d
permissions -rw-r--r--
disable these weaponset flags. they bug up highlander and otherwise have no useful impact on the script.

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

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