]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/generator.qh
Merge branch 'master' into Mario/ons_updates
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / generator.qh
index 6ba1ce858affb6bd9f7de8cef8d6f3d94398f0d1..e4e1611f31273ca1d7dda2173f72405d733ab3c4 100644 (file)
@@ -1,8 +1,11 @@
+#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;
 
 void ent_generator();
-void generator_precache();
\ No newline at end of file
+void generator_precache();
+#endif