tools/MissionsEditor/main.cpp
author palewolf
Sun, 21 Mar 2010 20:53:34 +0000
changeset 3039 057486a3a6c0
parent 2572 af96861683f8
permissions -rw-r--r--
Insert commit message here

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

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