]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/controlpoint.qh
Draw: purge SELFPARAM
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / controlpoint.qh
index eef4bd45f54fff5e046c690597f24862f8789bd5..31485519d4eefee415115cd3098d03fc80d821cd 100644 (file)
@@ -1,8 +1,12 @@
+#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(entity this);
 
-void ent_cpicon();
-void cpicon_precache();
\ No newline at end of file
+#endif