tools/MissionsEditor/main.cpp
author nemo
Fri, 09 Apr 2010 00:04:50 +0000
changeset 3327 ac0ddbb205fe
parent 2572 af96861683f8
permissions -rw-r--r--
Skip loading of splashes

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

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