ACE3/addons/ui/CfgEventHandlers.hpp

25 lines
572 B
C++
Raw Normal View History

2016-03-06 11:50:16 +00:00
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));
};
};
// Closing diary resets showHUD
class Extended_DisplayUnload_EventHandlers {
class RscDiary {
ADDON = QUOTE([{[false] call FUNC(setElements)}] call CBA_fnc_execNextFrame);
};
};