tools/MissionsEditor/main.cpp
author smxx
Fri, 28 May 2010 12:47:17 +0000
changeset 3481 c385a7dad025
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Updated Flamethrower's hand graphic and added some animation

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

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