tools/MissionsEditor/main.cpp
author smxx
Sat, 27 Mar 2010 14:57:41 +0000
changeset 3110 c8d7c852e26a
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Fixed new animations/sprites for homing bee

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

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