tools/MissionsEditor/main.cpp
author koda
Sat, 31 Jul 2010 10:53:54 +0200
branchexperimental3D
changeset 3690 c247dee9e1c0
parent 2572 af96861683f8
permissions -rw-r--r--
applying smaxx patch where it should be

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

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