tools/MissionsEditor/main.cpp
author sheepluva
Sat, 03 Apr 2010 01:30:13 +0000
changeset 3274 1e7dcd32890a
parent 2572 af96861683f8
permissions -rw-r--r--
more translations! from inu and szczur

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

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