tools/MissionsEditor/main.cpp
author smxx
Mon, 22 Feb 2010 10:56:43 +0000
changeset 2844 cea15ef417ea
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Fixed sometimes broken drawing of static graves (clamping issue?) * Removed the (now obsolete) DrawSurfSprite from uStore

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

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