tools/MissionsEditor/main.cpp
author koda
Sun, 29 Aug 2010 16:55:58 +0200
changeset 3785 7056284fd97c
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();
}