ACE3/addons/frag/XEH_preInit.sqf

31 lines
577 B
Plaintext
Raw Normal View History

2024-01-11 21:44:15 +00:00
#include "script_component.hpp"
2016-05-30 16:37:03 +00:00
ADDON = false;
PREP_RECOMPILE_START;
2016-05-30 16:37:03 +00:00
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;
2016-05-30 16:37:03 +00:00
2024-01-11 20:01:50 +00:00
GVAR(spallMaterialCache) = createHashMap;
GVAR(spallRoundCache) = createHashMap;
GVAR(lastSpallTime) = -2;
2016-05-30 16:37:03 +00:00
GVAR(shouldFragCache) = createHashMap;
GVAR(fragInfoCache) = createHashMap;
GVAR(lastFragTime) = -2;
2016-05-30 16:37:03 +00:00
#include "initSettings.inc.sqf"
2024-01-10 21:47:50 +00:00
#ifdef DEBUG_MODE_DRAW
GVAR(dev_trackLines) = createHashMap;
GVAR(dev_hitBoxes) = createHashMap;
GVAR(dev_failedToDelete) = 0;
GVAR(dev_eventSpheres) = [];
#include "initSettingsDebug.inc.sqf"
#endif
2016-05-30 16:37:03 +00:00
ADDON = true;