tools/MissionsEditor/main.cpp
author inu
Sun, 07 Nov 2010 11:23:30 -0500
changeset 4170 7fb7386423d8
parent 2572 af96861683f8
permissions -rw-r--r--
portuguese update for map lua

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

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