tools/MissionsEditor/main.cpp
author smaxx
Mon, 23 Aug 2010 00:54:56 +0200
changeset 3754 cb42d83587f5
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Changed steam to use the white smoke sprite

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

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