tools/MissionsEditor/main.cpp
author koda
Mon, 30 Aug 2010 01:38:46 +0200
changeset 3789 c3eb56754e92
parent 2572 af96861683f8
permissions -rw-r--r--
added a smaller version of forts, fixed a couple of regressions

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

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