X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fclient%2Fcommand%2Fcl_cmd.qh;h=da34310e3cbbd59110bce0bade5f3fa1daa0b27d;hb=9eb82dd6fc682e3ddecd471835f9047816236342;hp=6e562af9258023b92a260724d3475ea468f6e1e0;hpb=bcb30bf31a58942eb89829a72b1e76661de7920c;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/client/command/cl_cmd.qh b/qcsrc/client/command/cl_cmd.qh index 6e562af92..da34310e3 100644 --- a/qcsrc/client/command/cl_cmd.qh +++ b/qcsrc/client/command/cl_cmd.qh @@ -1,7 +1,13 @@ +#ifndef CL_CMD_H +#define CL_CMD_H // ============================================== // CSQC client commands code, written by Samual // Last updated: December 17th, 2011 // ============================================== -void Cmd_HUD_SetFields(float); -void Cmd_HUD_Help(); \ No newline at end of file +void Cmd_HUD_SetFields(int); +void Cmd_HUD_Help(); + +// used by common/command/generic.qc:GenericCommand_dumpcommands to list all commands into a .txt file +void LocalCommand_macro_write_aliases(int fh); +#endif