tools/MissionsEditor/main.cpp
author nemo
Thu, 18 Mar 2010 02:55:42 +0000
changeset 3018 13ceaad4767e
parent 2572 af96861683f8
permissions -rw-r--r--
Adjust tests for cluster and watermelon, add molotov, assign FP test to whip, try to keep AI from attempting fire walking.

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

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