tools/MissionsEditor/main.cpp
author smxx
Mon, 01 Mar 2010 18:01:09 +0000
changeset 2903 e28356fe532a
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Added game mode notice for shared ammo game flag

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

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