tools/drawMapTest/main.cpp
author nemo
Tue, 02 Dec 2014 13:29:06 -0500
changeset 10603 bda5c7caf396
parent 4425 2314bb0c433d
permissions -rw-r--r--
switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.

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

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