ACE3/addons/frag/XEH_preInit.sqf

31 lines
602 B
Plaintext
Raw Normal View History

2016-05-30 16:37:03 +00:00
#include "script_component.hpp"
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
GVAR(materialSpallCache) = createHashMap;
GVAR(spallRoundCache) = createHashMapFromArray [["", "metal"]];
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"
#ifdef DEBUG_MODE_FULL
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;