- some new mission icons
- add variable portal limiter (and effects) to TechRacer
- allow variable (not just infinite) ufo fuel
- possibly break stuff some
- more whitespace?
#include <QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyWindow *mainWin = new MyWindow;
mainWin->show();
return app.exec();
}