tools/MissionsEditor/main.cpp
author smaxx
Sun, 22 Aug 2010 16:31:57 +0200
changeset 3751 a70c61c076ae
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Added fire trails Graphics: * Added new flame sprites by Aki (for testing)

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

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