tools/MissionsEditor/main.cpp
author nemo
Sun, 02 May 2010 02:58:59 +0000
changeset 3396 e5b3e5f2818e
parent 2572 af96861683f8
permissions -rw-r--r--
More portal changes. Allows for a multishoot utility. Hopefully not breaking anything.

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

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