tools/MissionsEditor/main.cpp
author nemo
Wed, 31 Mar 2010 20:47:38 +0000
changeset 3217 aecc0ebca774
parent 2572 af96861683f8
permissions -rw-r--r--
Add inu to credits since he kept going on about it

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

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