tools/MissionsEditor/main.cpp
author nemo
Mon, 11 Oct 2010 16:56:00 -0400
changeset 3970 0f6e3219c108
parent 2572 af96861683f8
permissions -rw-r--r--
set CurAmmoType to a temp var so I don't have to worry about it switching inside the routine so that I can actually put OnUsedAmmo where it belongs.

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

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