tools/MissionsEditor/main.cpp
author smxx
Mon, 15 Feb 2010 23:22:26 +0000
changeset 2816 30fc14a79aa0
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Forgot to commit hwengine.rc Training Missions: * Small tweaks to keep the time left once the goal is reached

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

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