tools/templates/main.cpp
author nemo
Thu, 15 Oct 2009 19:16:50 +0000
changeset 2463 34a484b2ddd6
parent 359 59fbfc65fbda
permissions -rw-r--r--
Play shotgun for weapon crates. Suggestion by Smaxx. Using "placed" for health/utility - could use a prettier sound for health now that there are health animation

#include <QApplication>

#include "mainform.h"

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