tools/templates/main.cpp
author nemo
Wed, 09 Aug 2017 15:36:05 -0400
changeset 12448 8b89fe2115ad
parent 359 59fbfc65fbda
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 <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}