tools/MissionsEditor/main.cpp
author koda
Fri, 03 Sep 2010 00:01:04 +0200
changeset 3817 b333f3b79271
parent 2572 af96861683f8
permissions -rw-r--r--
merge

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

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