tools/MissionsEditor/main.cpp
author nemo
Thu, 11 Nov 2010 09:58:10 -0500
changeset 4238 6f1631765ebd
parent 2572 af96861683f8
permissions -rw-r--r--
Fix a long-standing bug with ammo due to gstMoving being set on gears generically, causing an incorrect ammo type to be set. This caused crashes and incorrect ammo types.

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

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