tools/MissionsEditor/main.cpp
author nemo
Sun, 02 May 2010 20:30:23 +0000
changeset 3406 f4bdebced042
parent 2572 af96861683f8
permissions -rw-r--r--
Minor tweak. Still needs a lot of work.

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

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