tools/MissionsEditor/main.cpp
author smaxx
Thu, 29 Jul 2010 13:43:57 +0200
changeset 3682 45b416c5b976
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Hedgehogs will now cry in pain whenever they're hurt

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

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