tools/MissionsEditor/main.cpp
author smxx
Wed, 31 Mar 2010 17:52:55 +0000
changeset 3213 e48678c8cd28
parent 2572 af96861683f8
permissions -rw-r--r--
General: * Updated changelog for 0.9.13 (might require some sorting)

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

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