tools/MissionsEditor/main.cpp
author smxx
Wed, 10 Feb 2010 17:13:49 +0000
changeset 2794 befd3808c63a
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Forgot another gear pointer -> gear uid change

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

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