X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fcommon%2Fcommand%2Fmarkup.qh;h=7a1b3876af07e726b3d120678562214f399e2f3e;hp=6cf09d3ed4829c7c3bccd538b02ee4d08b6917bb;hb=4eab3f0253a063bdbd4e1ff64c4b2b08077c44c4;hpb=b40fec44bad9207fb7c4bb6aa7fd22dadf3e03cc diff --git a/qcsrc/common/command/markup.qh b/qcsrc/common/command/markup.qh index 6cf09d3ed..7a1b3876a 100644 --- a/qcsrc/common/command/markup.qh +++ b/qcsrc/common/command/markup.qh @@ -1,9 +1,13 @@ +#pragma once + // ========================================================== // 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);