tools/MissionsEditor/main.cpp
author sheepluva
Thu, 01 Apr 2010 00:38:02 +0000
changeset 3224 f5f4c611bcac
parent 2572 af96861683f8
permissions -rw-r--r--
possible map gen desync "fix" -- test please

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

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