tools/MissionsEditor/main.cpp
author sheepluva
Tue, 02 Nov 2010 13:17:01 +0100
changeset 4092 bf13068194b3
parent 2572 af96861683f8
permissions -rw-r--r--
more portal tweaks (closer exit position, cake stuff, etc)

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

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