tools/MissionsEditor/main.cpp
author smxx
Sun, 11 Apr 2010 09:53:28 +0000
changeset 3336 d7c1ffed1e15
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Avoid hedgehog specific actions (attack, jump, etc.) to be triggered while the game is paused

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

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