tools/MissionsEditor/main.cpp
author unc0rr
Wed, 21 Oct 2009 16:50:02 +0000
changeset 2573 a7db29d7e2d0
parent 2572 af96861683f8
permissions -rw-r--r--
Set version to 0.9.13-dev, protocol number to 30 due to changes in engine

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

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