tools/MissionsEditor/main.cpp
author nemo
Mon, 22 Mar 2010 17:59:59 +0000
changeset 3046 d54b2c718971
parent 2572 af96861683f8
permissions -rw-r--r--
Remove doubled call of freeEverything. restore freeing of LandBackSurface pending unc0rr explaining why 'sactly he took it out (assuming an error right now)

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

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