2016-02-22 14:20:36 +00:00
|
|
|
|
|
|
|
class Extended_PreStart_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_preStart));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-01-18 18:38:27 +00:00
|
|
|
class Extended_PreInit_EventHandlers {
|
|
|
|
class ADDON {
|
|
|
|
init = QUOTE(call COMPILE_FILE(XEH_preInit));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_PostInit_EventHandlers {
|
|
|
|
class ADDON {
|
2016-02-20 23:36:46 +00:00
|
|
|
clientInit = QUOTE(call COMPILE_FILE(XEH_clientInit));
|
2015-01-18 18:38:27 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_InitPost_EventHandlers {
|
|
|
|
class All {
|
|
|
|
class GVAR(compileMenu) {
|
2015-02-18 21:58:06 +00:00
|
|
|
init = QUOTE(_this call FUNC(compileMenu);_this call FUNC(compileMenuSelfAction));
|
2015-01-18 18:38:27 +00:00
|
|
|
};
|
|
|
|
};
|
2016-02-20 23:36:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Extended_DisplayLoad_EventHandlers {
|
|
|
|
class RscDiary {
|
|
|
|
ADDON = QUOTE(call COMPILE_FILE(XEH_displayLoad));
|
|
|
|
};
|
|
|
|
};
|