tools/drawMapTest/main.cpp
author nemo
Mon, 21 Oct 2013 12:38:24 -0400
changeset 9567 42bc1b58a242
parent 4425 2314bb0c433d
permissions -rw-r--r--
This test is intended to avoid repeatedly calling 5 ScriptSetIntegers each script call, that won't ever change after the map is created.

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

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