tools/MissionsEditor/main.cpp
author mbait
Thu, 06 May 2010 11:33:25 +0000
changeset 3433 566788d32e52
parent 2572 af96861683f8
permissions -rw-r--r--
Teleport AI: * calculate max height from target and check collision

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

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