tools/MissionsEditor/main.cpp
author inu
Tue, 14 Sep 2010 00:17:22 -0400
changeset 3861 4629026ff75a
parent 2572 af96861683f8
permissions -rw-r--r--
updated pt

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

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