tools/MissionsEditor/main.cpp
author smaxx
Fri, 10 Sep 2010 16:42:11 +0200
changeset 3847 771562124b16
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Tiny adjustment to improve AI's Watermelon Bomb accuracy Graphics: * New flame graphics * Fixed mirrored earth in the mirrored fort graphic

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

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