tools/MissionsEditor/main.cpp
author koda
Sat, 03 Jul 2010 02:01:24 +0200
changeset 3613 cfd3c6536a09
parent 2572 af96861683f8
permissions -rw-r--r--
make runtime quality check for iDevices

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

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