]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/g_hook.qh
Properly support team field on trigger_multiple
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_hook.qh
index 95ba88205b90666a612cb4232b7c00774dba76b0..719bf5b605bdbfc1832761610f0f0ac8a3c88670 100644 (file)
@@ -1,9 +1,9 @@
-#ifndef HOOK_H
-#define HOOK_H
+#pragma once
 
 // Wazat's grappling hook
 .entity                hook;
-void RemoveGrapplingHook(entity pl);
+void RemoveGrapplingHooks(entity pl);
+void RemoveHook(entity this);
 // (note: you can change the hook impulse #'s to whatever you please)
 .float hook_time;
 
@@ -16,4 +16,3 @@ const float HOOK_WAITING_FOR_RELEASE = BIT(4);
 
 void GrappleHookInit();
 vector hook_shotorigin[4];
-#endif