tools/MissionsEditor/main.cpp
author nemo
Thu, 01 Jul 2010 17:16:13 -0400
changeset 3604 b07b75753c6c
parent 2572 af96861683f8
permissions -rw-r--r--
New Rock themed music for Stage by HSR

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

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