tools/MissionsEditor/main.cpp
author nemo
Fri, 05 Nov 2010 17:27:14 -0400
changeset 4135 5be798ecafdc
parent 2572 af96861683f8
permissions -rw-r--r--
This should make bee and other targetted things behave more reliably in infinite attack mode. Blocks switching of weps if a target point is active.

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

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