tools/MissionsEditor/main.cpp
author sheepluva
Mon, 28 Jun 2010 21:52:00 +0200
changeset 3582 4debed8656d7
parent 2572 af96861683f8
permissions -rw-r--r--
fix segfault on HH-gear being 0 (e.g. after drowning) in cursor/target selection mode, thanks "ivze" for the heads-up!

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

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