tools/MissionsEditor/main.cpp
author smxx
Mon, 19 Apr 2010 12:47:36 +0000
changeset 3358 546e75f839ce
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Avoid game getting stuck due to indestructible land below piano (infinite bounces)

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

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