ACE3/addons/overheating/CfgEventHandlers.hpp

28 lines
605 B
C++
Raw Normal View History

2015-01-13 03:23:14 +00:00
class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE( call COMPILE_FILE(XEH_preInit) );
};
2015-01-13 03:23:14 +00:00
};
2015-01-18 20:08:56 +00:00
class Extended_PostInit_EventHandlers {
class ADDON {
init = QUOTE( call COMPILE_FILE(XEH_postInit) );
};
};
2015-01-13 03:23:14 +00:00
class Extended_FiredBIS_EventHandlers {
class CAManBase {
class GVAR(Overheat) {
clientFiredBIS = QUOTE(_this call FUNC(firedEH));
2015-01-13 03:23:14 +00:00
};
};
};
class Extended_Take_EventHandlers {
class CAManBase {
class GVAR(UnjamReload) {
2015-12-15 07:09:26 +00:00
clientTake = QUOTE( _this call FUNC(handleTakeEH) );
2015-01-13 03:23:14 +00:00
};
};
};