tools/MissionsEditor/main.cpp
author nemo
Thu, 04 Mar 2010 19:35:27 +0000
changeset 2932 9bc0cf3c7ac1
parent 2572 af96861683f8
permissions -rw-r--r--
Activate hedgehogs if explosives are falling. They could be sitting on top.

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

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