]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/gamemode_arena.qh
Add Arena to the mutator system, making use of round_handler. Also add support for...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / gamemode_arena.qh
1 float maxspawned;
2 float numspawned;
3 float arena_roundbased;
4 float arena_roundbased_state;
5 .float spawned;
6 .entity spawnqueue_next;
7 .entity spawnqueue_prev;
8 .float spawnqueue_in;
9 entity spawnqueue_first;
10 entity spawnqueue_last;
11
12 void Spawnqueue_Insert(entity e);
13 void Spawnqueue_Remove(entity e);
14 void Spawnqueue_Unmark(entity e);
15 void Spawnqueue_Mark(entity e);