tools/templates/main.cpp
author mikade
Thu, 01 Sep 2011 00:28:38 +0200
changeset 5720 a962d0823f49
parent 359 59fbfc65fbda
permissions -rw-r--r--
onHogAttack hook. Might reposition this later. Updates to Tumbler gameplay mode -- Better HUD -- Allow more user customization -- Bugfix for new gear spawns -- Performance tweaks -- Variety of small gameplay changes

#include <QApplication>

#include "mainform.h"

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