tools/MissionsEditor/main.cpp
author smxx
Thu, 15 Apr 2010 14:24:26 +0000
changeset 3341 3de60a5986e9
parent 2572 af96861683f8
permissions -rw-r--r--
Engine: * Added real alpha blending to CopyToXY

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

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