tools/MissionsEditor/main.cpp
author koda
Sun, 11 Jul 2010 18:39:01 +0200
changeset 3638 33ee433749ba
parent 2572 af96861683f8
permissions -rw-r--r--
touch overlay reworked, improvements to zoom and confirmation

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

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