tools/MissionsEditor/main.cpp
author koda
Sun, 11 Apr 2010 03:43:13 +0000
changeset 3335 2520ee7a5484
parent 2572 af96861683f8
permissions -rw-r--r--
new manager for handling (future) rotations added a macro for the settings file

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

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