tools/MissionsEditor/main.cpp
author nemo
Sun, 24 Jan 2010 07:37:00 +0000
changeset 2704 51cda17b7c3b
parent 2572 af96861683f8
permissions -rw-r--r--
Rolling random numbers before land is generated is bad, m'kay? InitWorld probably not the best place for it.

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

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