tools/drawMapTest/main.cpp
author nemo
Sat, 29 Nov 2014 14:00:40 -0500
changeset 10578 814acf1511be
parent 4425 2314bb0c433d
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 <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}