]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/generator.qh
Net: purge SELFPARAM from sendfuncs
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / generator.qh
index cd1737189bfed7b12a9293b4ec0c3d887f5ec413..003c2b1d6855f1f93fed3d1ae078dbf2e8c841b9 100644 (file)
@@ -1,9 +1,10 @@
-#define GENERATOR_MIN '-52 -52 -14'
-#define GENERATOR_MAX '52 52 75'
+#ifndef GENERATOR_H
+#define GENERATOR_H
+const vector GENERATOR_MIN = '-52 -52 -14';
+const vector GENERATOR_MAX = '52 52 75';
 
-float GSF_STATUS = 4;
-float GSF_SETUP = 8;
+const int GSF_STATUS = 4;
+const int GSF_SETUP = 8;
 
-#ifdef CSQC
-void ent_generator();
-#endif
\ No newline at end of file
+bool generator_send(entity this, entity to, int sf);
+#endif