From: Mircea Kitsune Date: Thu, 5 Jan 2012 12:21:05 +0000 (+0200) Subject: Merge branch 'master' into mirceakitsune/damage_effects X-Git-Tag: xonotic-v0.6.0~110^2^2~51 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=d03bf59652dab079deef7cf35e5b80599b13df05 Merge branch 'master' into mirceakitsune/damage_effects --- d03bf59652dab079deef7cf35e5b80599b13df05 diff --cc qcsrc/common/util.qh index 311f402e78,a8dd88c2f0..222c0223fd --- a/qcsrc/common/util.qh +++ b/qcsrc/common/util.qh @@@ -277,10 -273,15 +273,20 @@@ float lowestbit(float f) entity ReadCSQCEntity() #endif + #ifndef MENUQC + string strtolower(string s); + #endif + + string MakeConsoleSafe(string input); + + #ifndef MENUQC + float InterpretBoolean(string input); + #endif + // generic shutdown handler void Shutdown(); + +#ifndef MENUQC +// loops through the tags of model v using counter tagnum +#define FOR_EACH_TAG(v) float tagnum; for(tagnum = 1, gettaginfo(v, tagnum);; tagnum++, gettaginfo(v, tagnum)) if not(gettaginfo_name) break; else +#endif