]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/g_hook.qh
Fix FL_WEAPON flag overlapping FL_JUMPRELEASED. This unintentional change was introdu...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_hook.qh
diff --git a/qcsrc/server/g_hook.qh b/qcsrc/server/g_hook.qh
deleted file mode 100644 (file)
index 900c23d..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-// Wazat's grappling hook
-.entity                hook;
-void RemoveGrapplingHook(entity pl);
-// (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];