tools/MissionsEditor/main.cpp
author unc0rr
Wed, 21 Oct 2009 19:41:24 +0000
changeset 2574 2f3e5c57359c
parent 2572 af96861683f8
permissions -rw-r--r--
Fix (quite rare) spectators queue error when joining game with teams left the game. Could be applied to 0.9.12 without breaking compatibility.

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

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