tools/MissionsEditor/main.cpp
author koda
Thu, 18 Mar 2010 02:18:50 +0000
changeset 3015 20a9c8160e82
parent 2572 af96861683f8
permissions -rw-r--r--
add jump and backjump controls fix a small glitch when dimming the controls

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

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