tools/MissionsEditor/main.cpp
author smaxx
Tue, 14 Sep 2010 21:07:06 +0200
changeset 3869 d3d39bbb05f2
parent 2572 af96861683f8
permissions -rw-r--r--
Frontend: * Added small icons to theme selection as well (open for discussion - like it or not?)

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

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