tools/MissionsEditor/main.cpp
author nemo
Tue, 09 Mar 2010 02:02:22 +0000
changeset 2970 011075f93746
parent 2572 af96861683f8
permissions -rw-r--r--
Let's try this too (override following remote if in ammo menu)

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

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