]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/controlpoint.qh
Disable multijump on the client by default (only those who want it should be able...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / controlpoint.qh
index eef4bd45f54fff5e046c690597f24862f8789bd5..8469b5226fc36ef3f0efc15310c9732b0f654552 100644 (file)
@@ -1,8 +1,13 @@
+#ifndef CONTROLPOINT_H
+#define CONTROLPOINT_H
+
 const vector CPICON_MIN = '-32 -32 -9';
 const vector CPICON_MAX = '32 32 25';
 
-float CPSF_STATUS = 4;
-float CPSF_SETUP = 8;
+const int CPSF_STATUS = 4;
+const int CPSF_SETUP = 8;
 
 void ent_cpicon();
-void cpicon_precache();
\ No newline at end of file
+void cpicon_precache();
+
+#endif