tools/MissionsEditor/main.cpp
author koda
Sun, 19 Sep 2010 17:23:48 +0200
changeset 3886 4f052bf1f1a9
parent 2572 af96861683f8
permissions -rw-r--r--
Added tag Hedgewars-iOS-1.0.1 for changeset 296ec09490d9

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

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