tools/templates/main.cpp
author nemo
Fri, 16 Oct 2009 14:53:58 +0000
changeset 2491 525e7d3a4958
parent 359 59fbfc65fbda
permissions -rw-r--r--
Smaxx excludes flames from triggering homerun sound, presumably any other weapon still can??

#include <QApplication>

#include "mainform.h"

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