]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/command/generic.qh
Clean up CSQC #includes
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / command / generic.qh
index d1faa250ea409dfbcb4b90b128773e384db6284b..8858ab74f88eff306b90c56368bac1203e6204b6 100644 (file)
@@ -1,11 +1,22 @@
 #ifndef GENERIC_H
 #define GENERIC_H
 
+#include "markup.qh"
+#include "rpn.qh"
+
 // =========================================================
 //  Declarations for common command code, written by Samual
 //  Last updated: December 28th, 2011
 // =========================================================
 
+void GenericCommand_macro_help();
+
+float GenericCommand_macro_command(float argc, string command);
+
+float GenericCommand_macro_usage(float argc);
+
+void GenericCommand_macro_write_aliases(float fh);
+
 // Used by other game command systems for common commands,
 // and it returns true if handled, false if not.
 // Note: It tokenizes its input, so be careful!