]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/g_world.qh
Merge remote-tracking branch 'origin/TimePath/experiments/csqc_prediction' into TimeP...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_world.qh
1 #ifndef G_WORLD_H
2 #define G_WORLD_H
3
4 float checkrules_equality;
5 float checkrules_suddendeathwarning;
6 float checkrules_suddendeathend;
7 float checkrules_overtimesadded; //how many overtimes have been already added
8
9 const float WINNING_NO = 0; // no winner, but time limits may terminate the game
10 const float WINNING_YES = 1; // winner found
11 const float WINNING_NEVER = 2; // no winner, enter overtime if time limit is reached
12 const float WINNING_STARTSUDDENDEATHOVERTIME = 3; // no winner, enter suddendeath overtime NOW
13
14 void CheckRules_Player();
15 void IntermissionThink();
16
17 #endif