tools/MissionsEditor/main.cpp
author smxx
Wed, 17 Mar 2010 22:56:23 +0000
changeset 3013 dfc1f16aeb53
parent 2572 af96861683f8
permissions -rw-r--r--
General: * Updated Spanish translation by Palewolf Maps: * Updated Knockball to use less strings and placeholders

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

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