tools/MissionsEditor/main.cpp
author nemo
Sun, 25 Jul 2010 10:16:34 -0400
changeset 3669 19be65b12c43
parent 2572 af96861683f8
permissions -rw-r--r--
merge. forgot again.

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

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