ACE3/addons/grenades/CfgEventHandlers.hpp

21 lines
413 B
C++
Raw Normal View History

2015-01-14 09:06:47 +00:00
class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preInit));
};
2015-01-14 09:06:47 +00:00
};
class Extended_PostInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_postInit));
};
2015-01-14 09:06:47 +00:00
};
class Extended_FiredBIS_EventHandlers {
class CAManBase {
class ADDON {
firedBIS = QUOTE(_this call FUNC(throwGrenade));
};
2015-01-14 09:06:47 +00:00
};
};