tools/MissionsEditor/main.cpp
author koda
Sun, 23 May 2010 22:05:59 +0000
changeset 3479 972ae3ec178a
parent 2572 af96861683f8
permissions -rw-r--r--
initial support for game modifiers (schemes)

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

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