tools/MissionsEditor/main.cpp
author smxx
Fri, 26 Mar 2010 15:59:21 +0000
changeset 3080 b7fa8ad60e3b
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Replaced UFO with the Homing Bee (Bzzzzz!)

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

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