tools/MissionsEditor/main.cpp
author HSR
Thu, 01 Jul 2010 18:26:44 -0400
changeset 3605 5eb93322f6f1
parent 2572 af96861683f8
permissions -rw-r--r--
New music for City theme

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

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