tools/MissionsEditor/main.cpp
author nemo
Sat, 21 Nov 2009 22:55:20 +0000
changeset 2637 1e008dfd2018
parent 2572 af96861683f8
permissions -rw-r--r--
Proper plurals for english, french updates from artart78

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

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