tools/MissionsEditor/main.cpp
author smxx
Sat, 13 Feb 2010 12:40:40 +0000
changeset 2804 31c6c36c5d34
parent 2572 af96861683f8
permissions -rw-r--r--
General: * Removed FindLua51 cmake module as fpc does it's own lookup anyway

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

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