]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/sv_cmd.qh
Merge branch 'master' into terencehill/itemstime
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / sv_cmd.qh
1 #ifndef SV_CMD_H
2 #define SV_CMD_H
3
4 // =================================================
5 //  Declarations for server side game commands
6 //  Last updated: December 25th, 2011
7 // =================================================
8
9 string GotoMap(string m);
10
11 void race_deleteTime(string map, float pos);
12
13 const float SHUFFLETEAMS_MAX_PLAYERS = 255;
14 const float SHUFFLETEAMS_MAX_TEAMS = 4;
15 float shuffleteams_players[SHUFFLETEAMS_MAX_PLAYERS]; // maximum of 255 player slots
16 float shuffleteams_teams[SHUFFLETEAMS_MAX_TEAMS]; // maximum of 4 teams
17
18 // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
19 void GameCommand_macro_write_aliases(float fh);
20 #endif