tools/MissionsEditor/main.cpp
author koda
Fri, 26 Mar 2010 09:40:26 +0000
changeset 3073 c22b395b6a2e
parent 2572 af96861683f8
permissions -rw-r--r--
add another button to close the game and return to the iFrontend (untested)

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

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