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();
}