]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/cmd.qh
Merge branch 'master' into Mario/showspecs
[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 .float checkfail;
13
14 // number of monsters spawned with mobspawn command
15 float totalspawned;
16
17 string MapVote_Suggest(string m);
18
19 // used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
20 void ClientCommand_macro_write_aliases(float fh);
21 #endif