ACE3/addons/vector/XEH_preInit.sqf

41 lines
796 B
Plaintext
Raw Normal View History

2015-01-14 06:24:17 +00:00
#include "script_component.hpp"
PREP(abort);
PREP(config);
PREP(convertFOS);
PREP(settings);
PREP(tabAzimuthKey);
PREP(tabDistanceKey);
2015-01-15 18:01:27 +00:00
/////
2015-01-15 06:18:57 +00:00
PREP(clearDisplay);
PREP(convertToTexturesDegree);
PREP(convertToTexturesDistance);
PREP(showCenter);
PREP(showP1);
PREP(onKeyDown);
PREP(onKeyHold);
PREP(onKeyUp);
2015-01-15 18:01:27 +00:00
2015-01-15 06:18:57 +00:00
PREP(getDirection);
PREP(getDistance);
2015-01-15 16:24:19 +00:00
PREP(getHeightDistance);
2015-01-15 18:01:27 +00:00
PREP(getRelativeAzimuthDistance);
PREP(getRelativeDistance);
2015-01-15 18:01:27 +00:00
2015-01-15 06:18:57 +00:00
PREP(showAzimuth);
2015-01-15 15:40:06 +00:00
PREP(showAzimuthInclination);
2015-01-15 16:24:19 +00:00
PREP(showHeightDistance);
2015-01-15 06:18:57 +00:00
PREP(showDistance);
2015-01-15 18:01:27 +00:00
PREP(showRelativeAzimuthDistance);
PREP(showRelativeDistance);
2015-01-15 06:18:57 +00:00
2015-01-15 15:21:47 +00:00
GVAR(holdKeyHandler) = -1;
2015-01-15 06:18:57 +00:00
GVAR(isKeyDownAzimuth) = false;
GVAR(isKeyDownDistance) = false;
GVAR(keyDownTimeAzimuth) = -1;
GVAR(keyDownTimeDistance) = -1;
GVAR(useMil) = false;
GVAR(useFeet) = false;