]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/mutators/gamemode_invasion.qh
Merge branch 'master' into terencehill/bot_fixes
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / gamemode_invasion.qh
index 9c934390625295825d232a536c2961eb78fede41..191aef9ad2e734a2fd8dc9cf219361c767df96c4 100644 (file)
@@ -1,7 +1,18 @@
-float numspawned;
-float maxspawned;
-float roundcnt;
-float maxrounds;
-float numkilled;
-float last_check;
+#ifndef GAMEMODE_INVASION_H
+#define GAMEMODE_INVASION_H
 
+float inv_numspawned;
+float inv_maxspawned;
+float inv_roundcnt;
+float inv_maxrounds;
+float inv_numkilled;
+float inv_lastcheck;
+float inv_maxcurrent;
+
+float invasion_teams;
+float inv_monsters_perteam[17];
+
+float inv_monsterskill;
+
+const float ST_INV_KILLS = 1;
+#endif