tools/MissionsEditor/main.cpp
author nemo
Tue, 19 Oct 2010 19:47:17 -0400
changeset 3985 57121975b64b
parent 2572 af96861683f8
permissions -rw-r--r--
merge

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

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