tools/MissionsEditor/main.cpp
author nemo
Fri, 17 Sep 2010 13:32:37 -0400
changeset 3872 110121efe3d2
parent 2572 af96861683f8
permissions -rw-r--r--
inu adds a few more random teams

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

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