tools/MissionsEditor/main.cpp
author koda
Thu, 21 Oct 2010 23:12:02 +0200
changeset 3990 e8a428710a94
parent 2572 af96861683f8
permissions -rw-r--r--
Added tag Hedgewars-iOS-1.1 for changeset adffb668f06e

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

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