tools/drawMapTest/main.cpp
author nemo
Wed, 22 Nov 2017 17:38:47 -0500
changeset 12841 afd312fc270d
parent 4425 2314bb0c433d
permissions -rw-r--r--
infinite attack resets flags so probably should skip this

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

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