tools/MissionsEditor/main.cpp
author unc0rr
Sat, 03 Apr 2010 15:40:57 +0000
changeset 3296 604fe135623a
parent 2572 af96861683f8
permissions -rw-r--r--
Oops, forgot this

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

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