tools/MissionsEditor/main.cpp
author koda
Sat, 03 Jul 2010 15:30:52 +0200
changeset 3619 1155d8970646
parent 2572 af96861683f8
permissions -rw-r--r--
partially apply new graphics to code

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

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