tools/drawMapTest/main.cpp
author nemo
Mon, 30 Dec 2013 18:29:23 -0500
branch0.9.20
changeset 9885 34e8880f1f0a
parent 4425 2314bb0c433d
permissions -rw-r--r--
missed this in the merge. rejected the uGearsHandlersMess changes thinking they were all desyncing, but there was the function rename from uLandGraphics

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

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