tools/MissionsEditor/main.cpp
author nemo
Thu, 11 Nov 2010 11:04:24 -0500
changeset 4241 835fd7a0e1bf
parent 2572 af96861683f8
permissions -rw-r--r--
Move resurrection to utilities, reduce its probablit a bit to match other utilities, rename the "hint" prop since it really isn't being used as a hint anymore. That can be put back if it changes.

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

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