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