]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/mutators/gamemode_race.qh
Merge branch 'master' into Mario/vaporizer_damage
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / gamemode_race.qh
index 32829a25c9166bd70905b5785f75c4067ca007e5..0e20b9b57a06bdd47ded366efcba576b4e08356f 100644 (file)
@@ -1,8 +1,12 @@
+#ifndef GAMEMODE_RACE_H
+#define GAMEMODE_RACE_H
+
 float g_race_qualifying;
 float race_teams;
 
 // scores
-#define ST_RACE_LAPS 1
-#define SP_RACE_LAPS 4
-#define SP_RACE_TIME 5
-#define SP_RACE_FASTEST 6
+const float ST_RACE_LAPS = 1;
+const float SP_RACE_LAPS = 4;
+const float SP_RACE_TIME = 5;
+const float SP_RACE_FASTEST = 6;
+#endif