tools/MissionsEditor/main.cpp
author smaxx
Mon, 02 Aug 2010 01:07:51 +0200
changeset 3706 a79784328c03
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Adjusted Piano Strike's notes

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

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