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) );
|
|
|
|
};
|
|
|
|
};
|
2015-08-28 21:57:16 +00:00
|
|
|
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));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|