tools/MissionsEditor/main.cpp
author smxx
Thu, 04 Feb 2010 22:30:42 +0000
changeset 2752 df01bbbd0e1a
parent 2572 af96861683f8
permissions -rw-r--r--
Frontend: * Skip cpu flag to hide it from players

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

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