ACE3/addons/attach/CfgEventHandlers.hpp

39 lines
844 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));
};
};
2015-01-11 20:39:49 +00:00
class Extended_PreInit_EventHandlers {
2015-02-01 20:56:19 +00:00
class ADDON {
2015-02-15 14:31:09 +00:00
init = QUOTE(call COMPILE_FILE(XEH_preInit));
2015-02-01 20:56:19 +00:00
};
2015-02-15 14:31:09 +00:00
};
2015-03-27 16:53:04 +00:00
class Extended_PostInit_EventHandlers {
class ADDON {
clientInit = QUOTE( call COMPILE_FILE(XEH_clientInit) );
};
};
class Extended_GetIn_EventHandlers {
class All {
class ADDON {
getIn = QUOTE(_this call FUNC(handleGetIn));
};
};
};
class Extended_GetOut_EventHandlers {
class All {
class ADDON {
getOut = QUOTE(_this call FUNC(handleGetOut));
};
};
};
class Extended_Killed_EventHandlers {
class All {
class ADDON {
killed = QUOTE(_this call FUNC(handleKilled));
};
};
};