tools/MissionsEditor/main.cpp
author nemo
Thu, 01 Jul 2010 14:17:22 -0400
changeset 3602 99c93fa258d6
parent 2572 af96861683f8
permissions -rw-r--r--
Restore prior optimisation with the wildly out-of-bounds tx in LandDirty removed

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

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