tools/MissionsEditor/main.cpp
author koda
Wed, 10 Nov 2010 03:08:14 +0100
changeset 4232 3a7862405c36
parent 2572 af96861683f8
permissions -rw-r--r--
tweak interface, there is no need to manually add new weapons and schemes to the filter list

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

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