tools/MissionsEditor/main.cpp
author smaxx
Wed, 23 Jun 2010 13:43:56 +0200
changeset 3539 c3d1fccbe0ed
parent 2572 af96861683f8
permissions -rw-r--r--
General: * Disabled building of libopenalbridge (why build/link everywhere even if not used?; fails due to cc1 being unable to find some files on Win32) Engine: * Show Lua errors as 'chat messages' * Added ability to write to chat buffer even while the engine is still loading (limited to 26 lines)

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

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