tools/MissionsEditor/main.cpp
author mbait
Thu, 06 May 2010 20:59:15 +0000
changeset 3439 a98984e4f458
parent 2572 af96861683f8
permissions -rw-r--r--
Teleport AI: * fix indentation and remove tabs

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

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