mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ff5eb34e10
* Interaction Menu - Only compile self actions when needed * Update XEH_clientInit.sqf * fix spellling * format/comments * Don't compile actions on headless servers * Update addons/zeus/XEH_postInit.sqf Co-Authored-By: PabstMirror <pabstmirror@gmail.com>
31 lines
708 B
C++
31 lines
708 B
C++
|
|
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_PostInit_EventHandlers {
|
|
class ADDON {
|
|
clientInit = QUOTE(call COMPILE_FILE(XEH_clientInit));
|
|
};
|
|
};
|
|
|
|
class Extended_DisplayLoad_EventHandlers {
|
|
class RscDiary {
|
|
ADDON = QUOTE(call COMPILE_FILE(XEH_displayLoad));
|
|
};
|
|
class RscDisplayInterrupt {
|
|
ADDON = QUOTE(_this call FUNC(handleEscapeMenu));
|
|
};
|
|
class RscDisplayMPInterrupt {
|
|
ADDON = QUOTE(_this call FUNC(handleEscapeMenu));
|
|
};
|
|
};
|