mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
36 lines
775 B
Plaintext
36 lines
775 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP_RECOMPILE_START;
|
|
#include "XEH_PREP.hpp"
|
|
PREP_RECOMPILE_END;
|
|
|
|
call FUNC(initMaterialCache);
|
|
|
|
GVAR(spallInfoCache) = createHashMap;
|
|
GVAR(shouldSpallCache) = createHashMap;
|
|
GVAR(nextSpallAllowTime) = -1;
|
|
|
|
GVAR(shouldFragCache) = createHashMap;
|
|
GVAR(fragInfoCache) = createHashMap;
|
|
GVAR(lastFragTime) = -1;
|
|
|
|
#include "initSettings.inc.sqf"
|
|
|
|
GVAR(dev_trackLines) = createHashMap;
|
|
GVAR(dev_hitBoxes) = createHashMap;
|
|
GVAR(dev_eventSpheres) = [];
|
|
GVAR(dev_drawPFEH) = -1;
|
|
|
|
#ifdef DEBUG_MODE_DRAW
|
|
#include "initSettingsDebug.inc.sqf"
|
|
#endif
|
|
|
|
if (isServer) then {
|
|
[QGVAR(frag_eh), LINKFUNC(frago)] call CBA_fnc_addEventHandler;
|
|
[QGVAR(spallEvent), LINKFUNC(doSpallServer)] call CBA_fnc_addEventHandler;
|
|
};
|
|
|
|
ADDON = true;
|