X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fg_hook.qh;h=719bf5b605bdbfc1832761610f0f0ac8a3c88670;hb=050fb0011ae5fb2b36c7c7f3d560f9453807a8ab;hp=1ebbb9b8f1984037c5c2acda9c9b4efdb3357c3b;hpb=0e7ed909bffb4ff21f0c68d163edfc17487e380a;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/g_hook.qh b/qcsrc/server/g_hook.qh index 1ebbb9b8f..719bf5b60 100644 --- a/qcsrc/server/g_hook.qh +++ b/qcsrc/server/g_hook.qh @@ -1,17 +1,18 @@ +#pragma once + // Wazat's grappling hook .entity hook; -void GrapplingHookFrame(); -void RemoveGrapplingHook(entity pl); -void SetGrappleHookBindings(); +void RemoveGrapplingHooks(entity pl); +void RemoveHook(entity this); // (note: you can change the hook impulse #'s to whatever you please) .float hook_time; -float HOOK_FIRING = 1; -float HOOK_REMOVING = 2; -float HOOK_PULLING = 4; -float HOOK_RELEASING = 8; -float HOOK_WAITING_FOR_RELEASE = 16; +const float HOOK_FIRING = BIT(0); +const float HOOK_REMOVING = BIT(1); +const float HOOK_PULLING = BIT(2); +const float HOOK_RELEASING = BIT(3); +const float HOOK_WAITING_FOR_RELEASE = BIT(4); .float hook_state; void GrappleHookInit(); -vector hook_shotorigin; +vector hook_shotorigin[4];