tools/MissionsEditor/main.cpp
author nemo
Fri, 26 Mar 2010 03:04:19 +0000
changeset 3072 b18038b3a0f4
parent 2572 af96861683f8
permissions -rw-r--r--
I don't know why I'm bothering. Sheepluva has a whole new approach in the works.

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

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