tools/MissionsEditor/main.cpp
author smaxx
Wed, 04 Aug 2010 15:57:27 +0200
changeset 3722 eadebe4c45c9
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Added (untested) script functions: GetHealth(), SetTimer(), GetTimer()

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

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