tools/MissionsEditor/main.cpp
author nemo
Fri, 26 Mar 2010 00:49:02 +0000
changeset 3070 f5ca5ab348c7
parent 2572 af96861683f8
permissions -rw-r--r--
Change settings for birdy in default weapon sets

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

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