ACE3/addons/respawn/CfgEventHandlers.hpp

21 lines
471 B
C++
Raw Normal View History

2015-01-12 09:20:50 +00:00
class Extended_PreInit_EventHandlers {
2015-01-13 14:28:03 +00:00
class ADDON {
2015-01-13 14:38:17 +00:00
init = QUOTE(call COMPILE_FILE(XEH_preInit));
2015-01-13 14:28:03 +00:00
};
2015-01-12 09:20:50 +00:00
};
class Extended_Killed_EventHandlers {
2015-01-13 14:28:03 +00:00
class CAManBase {
class GVAR(HandleGear) {
2015-01-13 14:38:17 +00:00
killed = QUOTE(_this call FUNC(handleKilled));
2015-01-13 14:28:03 +00:00
};
2015-01-12 09:20:50 +00:00
};
};
class Extended_Respawn_EventHandlers {
2015-01-13 14:28:03 +00:00
class CAManBase {
class GVAR(HandleGear) {
2015-01-13 14:38:17 +00:00
respawn = QUOTE(_this call FUNC(handleRespawn));
2015-01-13 14:28:03 +00:00
};
2015-01-12 09:20:50 +00:00
};
};