2015-09-26 01:16:55 +00:00
|
|
|
|
2015-06-04 19:13:44 +00:00
|
|
|
class Extended_PreInit_EventHandlers {
|
2015-07-10 21:34:36 +00:00
|
|
|
class ADDON {
|
|
|
|
init = QUOTE( call COMPILE_FILE(XEH_preInit) );
|
|
|
|
};
|
2015-06-04 19:13:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_PostInit_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE( call COMPILE_FILE(XEH_postInit) );
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_Init_EventHandlers {
|
|
|
|
class ACE_TripodObject {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(_this call DEFUNC(dragging,initObject));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-09-26 01:16:55 +00:00
|
|
|
|
|
|
|
class Extended_Killed_EventHandlers {
|
|
|
|
class CAManBase {
|
|
|
|
class ADDON {
|
|
|
|
killed = QUOTE(_this call FUNC(handleKilled));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|