tools/MissionsEditor/main.cpp
author koda
Tue, 30 Mar 2010 00:03:58 +0000
changeset 3170 1dbf4f8eaac0
parent 2572 af96861683f8
permissions -rw-r--r--
ifrontend: predispone teams in a proper data structure

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

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