tools/templates/main.cpp
author burp
Sat, 21 Aug 2010 22:54:43 +0200
changeset 3750 3aa85b5f3318
parent 359 59fbfc65fbda
permissions -rw-r--r--
SpawnCustomCrateAt: spawn crate at random position for x=y=0, also let it return the gear, and luabindings the gear uid

#include <QApplication>

#include "mainform.h"

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