tools/MissionsEditor/main.cpp
author unc0rr
Mon, 14 Dec 2009 20:23:51 +0000
changeset 2662 12dc696f1c81
parent 2572 af96861683f8
permissions -rw-r--r--
Implement "team" chat between spectators

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

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