ACE3/addons/hitreactions/CfgEventHandlers.hpp

21 lines
399 B
C++
Raw Normal View History

2016-02-22 14:20:36 +00:00
class Extended_PreStart_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preStart));
};
};
class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preInit));
};
};
class Extended_Hit_EventHandlers {
class CAManBase {
class ADDON {
hit = QUOTE(_this call FUNC(fallDown));
};
};
};