tools/MissionsEditor/main.cpp
author smxx
Mon, 01 Mar 2010 19:56:14 +0000
changeset 2906 c0ef5ac5cf6f
parent 2572 af96861683f8
permissions -rw-r--r--
General: * Updated Spanish translation by Palewolf

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

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