]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/cheats.qh
Disable pathlib debug to suppress model warnings
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / cheats.qh
index 8c276919c51082206169b6050dd44335d7d1fc84..4ead519eb0ff563390abf8afaf409c1288e79872 100644 (file)
@@ -1,13 +1,19 @@
-float autocvar_sv_cheats; // must... declare... global
+#ifndef CHEATS_H
+#define CHEATS_H
+
+#include "../common/impulses/all.qh"
+
+//float autocvar_sv_cheats; // must... declare... global
 
 float cheatcount_total;
 .float cheatcount;
 void CheatInit();
 void CheatShutdown();
-void CheatInitClient();
-void CheatShutdownClient();
-float CheatImpulse(float i);
+float CheatImpulse(int imp);
 float CheatCommand(float argc);
 float CheatFrame();
 
+const float CHRAME_DRAG = 8;
+
 void Drag_MoveDrag(entity from, entity to); // call this from CopyBody
+#endif