]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/controlpoint.qh
common: move instagib and nexball as they add custom items and weapons
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / controlpoint.qh
index 88ae0f1f25ccafb25623dca3d2d651780a94e2d7..d76f0ea069998ecc00bb61ed2c593a18f9c1db91 100644 (file)
@@ -1,10 +1,10 @@
-const vector CONTROLPOINT_MIN = '-63 -63 -9';
-const vector CONTROLPOINT_MAX = '65 63 26';
+#ifndef CONTROLPOINT_H
+#define CONTROLPOINT_H
 
-float CPSF_STATUS = 4;
-float CPSF_SETUP = 8;
+const vector CPICON_MIN = '-32 -32 -9';
+const vector CPICON_MAX = '32 32 25';
 
-#ifdef CSQC
-void ent_controlpoint();
-void controlpoint_precache();
-#endif
\ No newline at end of file
+const int CPSF_STATUS = 4;
+const int CPSF_SETUP = 8;
+
+#endif