tools/MissionsEditor/main.cpp
author smxx
Mon, 22 Mar 2010 20:57:49 +0000
changeset 3050 d6937fc885a1
parent 2572 af96861683f8
permissions -rw-r--r--
Maps: * Added Palewolf's Spanish translation for Basketball's script * Added Knockball's directory to directories to be installed

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

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