tools/MissionsEditor/main.cpp
author koda
Sun, 03 Jan 2010 22:58:19 +0000
changeset 2674 2fce032f2f95
parent 2572 af96861683f8
permissions -rw-r--r--
lupdate + Palewolf's updated spanish translation + other patches of mine

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

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