tools/drawMapTest/main.cpp
author sheepluva
Thu, 02 Oct 2014 12:08:22 +0200
changeset 10423 b9d6463cf2ca
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix mapgen of other scripts too

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

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