]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/intermission.qh
Merge branch 'master' into terencehill/glowmod_color_fix
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / intermission.qh
1 #pragma once
2
3 float intermission_running;
4 float intermission_exittime;
5 float alreadychangedlevel;
6
7 string GetGametype();
8
9 string GetMapname();
10
11 void IntermissionThink(entity this);
12
13 void FixIntermissionClient(entity e);
14
15 void GotoNextMap(float reinit);
16
17 bool Map_IsRecent(string m);
18
19 string GetNextMap();
20
21 void ShuffleMaplist();
22
23 void Map_Goto_SetStr(string nextmapname);
24
25 void Map_Goto(float reinit);
26
27 void Map_MarkAsRecent(string m);
28
29 float DoNextMapOverride(float reinit);
30
31 string GotoMap(string m);