tools/MissionsEditor/main.cpp
author sheepluva
Fri, 07 May 2010 20:45:03 +0000
changeset 3449 033e4a8a9c74
parent 2572 af96861683f8
permissions -rw-r--r--
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)

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

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