tools/MissionsEditor/main.cpp
author nemo
Mon, 11 Oct 2010 16:28:54 -0400
changeset 3969 5f4ef3db0a65
parent 2572 af96861683f8
permissions -rw-r--r--
Ok. Let's disable the right one this time. In fact, let's just remove newgrave entirely - no point in half-measures.

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

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