ACE3/addons/medical_menu/XEH_preInit.sqf

31 lines
574 B
Plaintext
Raw Normal View History

2015-08-02 14:56:27 +00:00
#include "script_component.hpp"
ADDON = false;
PREP(onMenuOpen);
PREP(onMenuClose);
2015-08-02 14:56:27 +00:00
PREP(openMenu);
2015-08-08 18:22:19 +00:00
PREP(canOpenMenu);
2015-08-02 14:56:27 +00:00
PREP(updateIcons);
PREP(updateUIInfo);
PREP(handleUI_DisplayOptions);
PREP(handleUI_dropDownTriageCard);
PREP(getTreatmentOptions);
PREP(updateActivityLog);
PREP(updateQuickViewLog);
PREP(updateBodyImage);
PREP(updateInformationLists);
PREP(setTriageStatus);
PREP(collectActions);
2015-08-08 18:22:19 +00:00
PREP(module);
GVAR(INTERACTION_TARGET) = objNull;
GVAR(actionsOther) = [];
GVAR(actionsSelf) = [];
GVAR(selectedBodyPart) = 0;
call FUNC(collectActions);
2015-08-02 14:56:27 +00:00
ADDON = true;