tools/MissionsEditor/main.cpp
author inu
Tue, 07 Sep 2010 22:28:33 -0400
changeset 3841 4fe0427855be
parent 2572 af96861683f8
permissions -rw-r--r--
Minor text changes

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

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