tools/MissionsEditor/main.cpp
author unc0rr
Wed, 03 Mar 2010 18:47:02 +0000
changeset 2928 0e95e0e24fd8
parent 2572 af96861683f8
permissions -rw-r--r--
When removing team, set player's clan property to a colour of his another team

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

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