tools/MissionsEditor/main.cpp
author koda
Wed, 07 Jul 2010 03:16:12 +0200
changeset 3628 2b4d878ba565
parent 2572 af96861683f8
permissions -rw-r--r--
enable tooltips on ipad (todo: disable them on iphone)

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

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