tools/MissionsEditor/main.cpp
author smxx
Wed, 31 Mar 2010 11:59:32 +0000
changeset 3204 65222383bf7d
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Fixed cursor shown twice in some cases while weapon menu is shown

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

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