tools/MissionsEditor/main.cpp
author koda
Fri, 16 Apr 2010 16:04:21 +0000
changeset 3349 5571592f10a8
parent 2572 af96861683f8
permissions -rw-r--r--
update ifrontend to latest ammostore protocol update sdl 1.3 bindings

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

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