X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fg_hook.qh;h=1ed78e2745d9d4a4cdfff18792f9399af50fb7e6;hp=719bf5b605bdbfc1832761610f0f0ac8a3c88670;hb=HEAD;hpb=fde04a29ed6f249c904737ae21ff44f400f1f453 diff --git a/qcsrc/server/g_hook.qh b/qcsrc/server/g_hook.qh deleted file mode 100644 index 719bf5b605..0000000000 --- a/qcsrc/server/g_hook.qh +++ /dev/null @@ -1,18 +0,0 @@ -#pragma once - -// Wazat's grappling hook -.entity hook; -void RemoveGrapplingHooks(entity pl); -void RemoveHook(entity this); -// (note: you can change the hook impulse #'s to whatever you please) -.float hook_time; - -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[4];