tools/MissionsEditor/main.cpp
author koda
Sun, 25 Oct 2009 10:39:12 +0000 (2009-10-25)
changeset 2582 e16668bac20f
parent 2572 af96861683f8
permissions -rw-r--r--
fix build
#include <QtGui/QApplication>
#include "editor.h"

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