tools/MissionsEditor/main.cpp
author smaxx
Wed, 01 Sep 2010 17:42:56 +0200
changeset 3797 e097914ac0e2
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Changed ready screen's behaviour (e.g. hitting [attack] WILL close the screen and trigger an attack) * Ammo menu keybind stops ready timer now.

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

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