tools/MissionsEditor/main.cpp
author unc0rr
Sat, 03 Apr 2010 13:58:31 +0000
changeset 3289 32d46e57c1ae
parent 2572 af96861683f8
permissions -rw-r--r--
Remove -dev suffix from version, set protocol number to 31

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

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