X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=qcsrc%2Fcommon%2Fcommand%2Fmarkup.qh;h=e6ac7cfbd3c810eb6e0aa5f40ba3095b567da606;hb=933d30fce3b22996928997806cf5e82a2bb2a00d;hp=331e2a5d7076b2615e81944df613e57604ec9c99;hpb=48e100236aa1c8f908502130ee0b7da30d9b5f98;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/command/markup.qh b/qcsrc/common/command/markup.qh index 331e2a5d7..e6ac7cfbd 100644 --- a/qcsrc/common/command/markup.qh +++ b/qcsrc/common/command/markup.qh @@ -1,9 +1,15 @@ -// ========================================================= -// Markup chat characters command code, reworked by Samual +#ifndef MARKUP_H +#define 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