tools/templates/main.cpp
author nemo
Wed, 24 Feb 2010 13:29:06 +0000
changeset 2857 768dfbe276a5
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix spectator crash due to missing nil check in new dust gear, init Ammo to nil in World prior to nil check

#include <QApplication>

#include "mainform.h"

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