tools/MissionsEditor/main.cpp
author nemo
Sun, 20 Dec 2009 20:35:15 +0000
changeset 2668 d3a85891ae39
parent 2572 af96861683f8
permissions -rw-r--r--
Updated chinese and taiwanese locales. Need to run the taiwanese ones past my taiwanese coworkers. Changes were extensive.

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

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