mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
36 lines
791 B
Plaintext
36 lines
791 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(getTypeOfDamage);
|
|
PREP(handleDamage_airway);
|
|
PREP(handleDamage);
|
|
PREP(handleDamage_advanced);
|
|
PREP(handleDamage_basic);
|
|
PREP(handleDamage_fractures);
|
|
PREP(handleDamage_internalInjuries);
|
|
PREP(handleDamage_caching);
|
|
PREP(init);
|
|
PREP(selectionNameToNumber);
|
|
PREP(handleDamage_wounds);
|
|
PREP(handleUnitVitals);
|
|
PREP(getBloodLoss);
|
|
PREP(getBloodPressure);
|
|
PREP(getBloodVolumeChange);
|
|
PREP(getCardiacOutput);
|
|
PREP(setCardiacArrest);
|
|
PREP(addToInjuredCollection);
|
|
PREP(setUnconscious);
|
|
PREP(getUnconsciousCondition);
|
|
PREP(addUnconsciousCondition);
|
|
PREP(setDead);
|
|
PREP(playInjuredSound);
|
|
PREP(treatment);
|
|
PREP(treatmentCallback);
|
|
PREP(treatmentCallback_basic);
|
|
PREP(treatmentCallback_advanced);
|
|
|
|
GVAR(injuredUnitCollection) = [];
|
|
|
|
ADDON = true;
|