tools/drawMapTest/main.cpp
author nemo
Wed, 09 Aug 2017 15:36:05 -0400
changeset 12453 8b89fe2115ad
parent 4425 2314bb0c433d
permissions -rw-r--r--
So, was trying to allow spawning on level surfaces of ice but not girders, but seems to be failing. We'll call this WIP

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

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