X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fcommand%2Fmarkup.qh;h=bccc78d0bcd3537d43c4aaa1c91410d47fad7a26;hb=61a847dbaab291d205cc9684b6d1a6e9bdad6375;hp=6cf09d3ed4829c7c3bccd538b02ee4d08b6917bb;hpb=d03bf59652dab079deef7cf35e5b80599b13df05;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/command/markup.qh b/qcsrc/common/command/markup.qh index 6cf09d3ed..bccc78d0b 100644 --- a/qcsrc/common/command/markup.qh +++ b/qcsrc/common/command/markup.qh @@ -1,9 +1,15 @@ +#ifndef COMMAND_MARKUP_H +#define COMMAND_MARKUP_H + // ========================================================== // Declarations for markup command code, reworked by Samual // Last updated: December 28th, 2011 // ========================================================== -#define NUM_MARKUPS 41 -float markup_init; +const int NUM_MARKUPS = 41; +bool markup_init; string markup_from[NUM_MARKUPS]; string markup_to[NUM_MARKUPS]; + +string GenericCommand_markup(string s2); +#endif