mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
45 lines
967 B
Plaintext
45 lines
967 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(clearDisplay);
|
|
PREP(convertToTexturesDegree);
|
|
PREP(convertToTexturesDistance);
|
|
PREP(convertToTexturesFOS);
|
|
PREP(dataTransfer);
|
|
PREP(showCenter);
|
|
PREP(showP1);
|
|
PREP(onKeyDown);
|
|
PREP(onKeyHold);
|
|
PREP(onKeyUp);
|
|
PREP(getDirection);
|
|
PREP(getDistance);
|
|
PREP(getHeightDistance);
|
|
PREP(getRelativeAzimuthDistance);
|
|
PREP(getRelativeDistance);
|
|
PREP(getRelativeHeightLength);
|
|
PREP(getFallOfShort);
|
|
PREP(showAzimuth);
|
|
PREP(showAzimuthInclination);
|
|
PREP(showHeightDistance);
|
|
PREP(showDistance);
|
|
PREP(showRelativeAzimuthDistance);
|
|
PREP(showRelativeDistance);
|
|
PREP(showRelativeHeightLength);
|
|
PREP(showFallOfShort);
|
|
PREP(showText);
|
|
PREP(nextMode);
|
|
PREP(adjustBrightness);
|
|
PREP(showReticle);
|
|
|
|
GVAR(holdKeyHandler) = -1;
|
|
GVAR(isKeyDownAzimuth) = false;
|
|
GVAR(isKeyDownDistance) = false;
|
|
GVAR(keyDownTimeAzimuth) = -1;
|
|
GVAR(keyDownTimeDistance) = -1;
|
|
GVAR(useMil) = false;
|
|
GVAR(useFeet) = false;
|
|
GVAR(modeReticle) = 0;
|
|
|
|
ADDON = true;
|