tools/templates/main.cpp
author nemo
Sat, 29 Nov 2014 14:00:40 -0500
changeset 10578 814acf1511be
parent 359 59fbfc65fbda
permissions -rw-r--r--
duplicate the ammoshove block into the falling fire area - this will make falling flames take out hogs in saucers, on rope, etc. no more dodging your own napalm strike by taking to the skies...

#include <QApplication>

#include "mainform.h"

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