tools/MissionsEditor/main.cpp
author sheepluva
Sun, 31 Oct 2010 02:50:15 +0100
changeset 4038 8972dd38bbad
parent 2572 af96861683f8
permissions -rw-r--r--
potential fix for issue #86: 'Objects behind a portal will sometimes go through the portal.' please test

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

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