2015-08-02 14:56:27 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
ADDON = false;
|
|
|
|
|
|
|
|
PREP(onMenuOpen);
|
2015-09-05 10:49:23 +00:00
|
|
|
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);
|
2015-08-06 21:51:17 +00:00
|
|
|
PREP(updateActivityLog);
|
2015-08-07 17:11:27 +00:00
|
|
|
PREP(updateQuickViewLog);
|
2015-08-06 21:51:17 +00:00
|
|
|
PREP(updateBodyImage);
|
|
|
|
PREP(updateInformationLists);
|
|
|
|
PREP(setTriageStatus);
|
|
|
|
PREP(collectActions);
|
2015-08-08 18:22:19 +00:00
|
|
|
PREP(module);
|
2015-08-06 21:51:17 +00:00
|
|
|
|
|
|
|
GVAR(INTERACTION_TARGET) = objNull;
|
|
|
|
GVAR(actionsOther) = [];
|
|
|
|
GVAR(actionsSelf) = [];
|
|
|
|
GVAR(selectedBodyPart) = 0;
|
|
|
|
|
|
|
|
call FUNC(collectActions);
|
2015-08-02 14:56:27 +00:00
|
|
|
|
|
|
|
ADDON = true;
|