tools/MissionsEditor/main.cpp
author koda
Mon, 15 Feb 2010 19:49:20 +0000
changeset 2812 0a24853de796
parent 2572 af96861683f8
permissions -rw-r--r--
add liblua to sources for macosx

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

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