tools/MissionsEditor/main.cpp
author smxx
Wed, 10 Feb 2010 17:31:12 +0000
changeset 2796 7f86e7ad378b
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Proper cleanup after creating landscape preview * Avoid trying to write to current working directory (no-go under Windows Vista/7 if installed to C:\Program Files)

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

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