MCPcopy Create free account
hub / github.com/degeneratehyperbola/NEPS / cullText

Function cullText

NEPS/Hacks/StreamProofESP.cpp:101–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99}
100
101static bool cullText(float distance, float cullDistance) noexcept
102{
103 if (cullDistance > 0)
104 return distance > cullDistance;
105 else if (cullDistance < 0)
106 return distance < -cullDistance;
107
108 return false;
109}
110
111static void renderBox(const BoundingBox& bbox, const Box& config) noexcept
112{

Callers 4

drawHealthBarFunction · 0.85
renderPlayerBoxFunction · 0.85
renderWeaponBoxFunction · 0.85
renderEntityBoxFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected