tools/MissionsEditor/main.cpp
author nemo
Sun, 28 Mar 2010 16:42:03 +0000
changeset 3137 d8b968a543df
parent 2572 af96861683f8
permissions -rw-r--r--
One more wacky generated map. bunch of islands suitable for islands shoppa.

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

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