tools/MissionsEditor/main.cpp
author unc0rr
Fri, 07 May 2010 04:52:46 +0000
changeset 3442 69898c6ede14
parent 2572 af96861683f8
permissions -rw-r--r--
Fix list Z-order bug (not tested)

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

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