tools/MissionsEditor/main.cpp
author koda
Thu, 07 Jan 2010 05:23:23 +0000
changeset 2678 334016e8d895
parent 2572 af96861683f8
permissions -rw-r--r--
injection of custom code in SDL for iPhone in order to implement our frontend initial support for (real) multitouch events

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

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