tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Tue, 04 Apr 2017 17:02:38 +0200
changeset 12156 9755922396f5
parent 11015 7a905f0070ce
permissions -rw-r--r--
Lua callback: onUsedAmmo, after using up an ammo Useful to know when e.g. shotgun attack has finished Syntax: onUsedAmmo(ammoType) * ammoType: Ammo type of used ammo Note: Not called for ammo type amNothing Thanks to KoBeWi

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}