tools/MissionsEditor/main.cpp
author nemo
Wed, 03 Mar 2010 02:36:52 +0000
changeset 2914 7db64c269a5b
parent 2572 af96861683f8
permissions -rw-r--r--
Ensure explosives are spawned somewhere w/ plenty of ground under them

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

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