]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/gamemode_keyhunt.qh
Remove includes from most headers
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / gamemode_keyhunt.qh
1 #ifndef GAMEMODE_KEYHUNT_H
2 #define GAMEMODE_KEYHUNT_H
3
4 // ALL OF THESE should be removed in the future, as other code should not have to care
5
6 // used by bots:
7 float kh_tracking_enabled;
8 .entity kh_next;
9 float kh_Key_AllOwnedByWhichTeam();
10
11 typedef void(void) kh_Think_t;
12 void kh_StartRound();
13 void kh_Controller_SetThink(float t, kh_Think_t func);
14 #endif