tools/MissionsEditor/main.cpp
author smxx
Sun, 07 Mar 2010 21:27:06 +0000
changeset 2966 fab0d8b04bb9
parent 2572 af96861683f8
permissions -rw-r--r--
Server: * Updated syntax/usage info to show real executable name

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

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