]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/command/common.qh
Merge remote-tracking branch 'origin/divVerent/noautomaplist'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / common.qh
index f11a25338fdeded16d56f2fab95ad3774a8cf4c1..589388bbad70d16faff12be3f5ae5dc418f0ce7b 100644 (file)
@@ -1,6 +1,6 @@
 // ============================================================
 //  Shared declarations for server commands, written by Samual
-//  Last updated: December 27th, 2011
+//  Last updated: December 30th, 2011
 // ============================================================
 
 // client verification results
@@ -29,4 +29,10 @@ float timeout_status; // (values: 0, 1, 2) contains whether a timeout is not act
 .vector lastV_angle; //used when pausing the game in order to force the player to keep his old view angle fixed
 
 // allow functions to be used in other code like g_world.qc and teamplay.qc
-void timeout_handler_think();
\ No newline at end of file
+void timeout_handler_think();
+
+// used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file
+void CommonCommand_macro_write_aliases(float fh);
+
+// keep track of the next token to use for argc
+float next_token;
\ No newline at end of file