tools/MissionsEditor/main.cpp
author sheepluva
Sat, 30 Oct 2010 23:25:41 +0200
changeset 4026 afae5a3b8424
parent 2572 af96861683f8
permissions -rw-r--r--
Portal: don't port RCPlanes for now, they are too wide anyway :P

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

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