]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/gamemode_arena.qh
Small cleanup, get rid of a redundant check, an unused variable and an outdated comment
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / gamemode_arena.qh
1 float maxspawned;
2 float numspawned;
3 float arena_roundbased;
4 .float spawned;
5 .entity spawnqueue_next;
6 .entity spawnqueue_prev;
7 .float spawnqueue_in;
8 entity spawnqueue_first;
9 entity spawnqueue_last;
10
11 void Spawnqueue_Insert(entity e);
12 void Spawnqueue_Remove(entity e);
13 void Spawnqueue_Unmark(entity e);
14 void Spawnqueue_Mark(entity e);