tools/MissionsEditor/main.cpp
author koda
Sun, 21 Mar 2010 20:54:18 +0000
changeset 3040 3e7f4a30e18a
parent 2572 af96861683f8
permissions -rw-r--r--
Insert commit message here (to get along with palewolf)

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

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