X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fcommand%2Fmarkup.qh;h=e6ac7cfbd3c810eb6e0aa5f40ba3095b567da606;hb=128cea32714586feb51b4a0d78a6bd4e35fef9f2;hp=6cf09d3ed4829c7c3bccd538b02ee4d08b6917bb;hpb=9f31b2438f27e46e900e4a9afe47fec5fcace088;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/command/markup.qh b/qcsrc/common/command/markup.qh index 6cf09d3ed..e6ac7cfbd 100644 --- a/qcsrc/common/command/markup.qh +++ b/qcsrc/common/command/markup.qh @@ -1,9 +1,15 @@ +#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