tools/MissionsEditor/main.cpp
author koda
Sun, 24 Jan 2010 19:52:30 +0000
changeset 2714 c85ffe57d971
parent 2572 af96861683f8
permissions -rw-r--r--
update iphone frontend to the new (silly) sdl api, code cleanups for other sections

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

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