tools/MissionsEditor/main.cpp
author smaxx
Thu, 26 Aug 2010 22:41:36 +0200
changeset 3776 28849f5a03c9
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Made all keybinds skip ready time

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

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