tools/MissionsEditor/main.cpp
author nemo
Fri, 12 Nov 2010 17:54:49 -0500
branch0.9.14
changeset 4253 160f987a5d9f
parent 2572 af96861683f8
permissions -rw-r--r--
improve behaviour of resurrection. pull in 4254 and 4259 which replace random with index

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

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