tools/MissionsEditor/main.cpp
author koda
Sat, 17 Jul 2010 03:59:10 +0200
changeset 3647 0d0df215fb52
parent 2572 af96861683f8
permissions -rw-r--r--
making chat work... (keyboard support is heavily broken in sdl upstream)

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

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