tools/MissionsEditor/main.cpp
author sheepluva
Sun, 31 Oct 2010 01:20:44 +0200
changeset 4033 e03b6be88b49
parent 2572 af96861683f8
permissions -rw-r--r--
translation file updates

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

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