]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/cmd.qh
Merge branch 'master' into Mario/vaporizer_damage
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / cmd.qh
1 #ifndef CMD_H
2 #define CMD_H
3
4 // =================================================
5 //  Declarations for server side networked commands
6 //  Last updated: December 26th, 2011
7 // =================================================
8
9 .float cmd_floodtime;
10 .float cmd_floodcount;
11 .float lms_spectate_warning;
12
13 // number of monsters spawned with mobspawn command
14 float totalspawned;
15
16 string MapVote_Suggest(string m);
17
18 // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
19 void ClientCommand_macro_write_aliases(float fh);
20 #endif