tools/MissionsEditor/main.cpp
author nemo
Sun, 20 Jun 2010 18:26:49 -0400
changeset 3521 96a502730e81
parent 2572 af96861683f8
permissions -rw-r--r--
Remove redundant test, add some temp variables to speed up the expensive CheckLand

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

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