tools/MissionsEditor/main.cpp
author koda
Fri, 12 Nov 2010 09:49:46 +0100
branch0.9.14
changeset 4245 3084dc7b4624
parent 2572 af96861683f8
permissions -rw-r--r--
merge this two safe commits from trunk to release branch

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

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