tools/MissionsEditor/main.cpp
author smxx
Sat, 20 Feb 2010 09:33:20 +0000
changeset 2830 571a9deffeac
parent 2572 af96861683f8
permissions -rw-r--r--
Frontend: * Added Xfire SDK files to /misc/xfire. See license.txt for further details.

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

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