tools/drawMapTest/main.cpp
author nemo
Mon, 25 May 2015 15:48:07 -0400
changeset 10959 1225f42f61e2
parent 4425 2314bb0c433d
permissions -rw-r--r--
Pass ScriptParams to preview to support techracer. Proof of concept for techracer, generate a preview for m=4

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

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