tools/drawMapTest/main.cpp
author nemo
Thu, 31 May 2012 12:52:31 -0400
changeset 7161 21a9c70b2070
parent 4425 2314bb0c433d
permissions -rw-r--r--
Name the flags for fall tracking and indicating whether the explosion erases terrain.

#include <QtGui/QApplication>
#include "mainwindow.h"

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