tools/drawMapTest/main.cpp
author nemo
Tue, 17 Apr 2018 15:21:52 -0400
changeset 13334 e8801220c13f
parent 4425 2314bb0c433d
permissions -rw-r--r--
minor simplification of conditions for not spawning a visual gear - also allows lua to spawn clouds critically or non-critically. We probably shouldn't even exempt clouds from this, and just spawn them once synced, but, eh, probably isn't a significant hit since sheepluva made the motion more efficient.

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

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