]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/menu/nexuiz/util.qh
- add a "frustrating" flag to race maps in mapinfo so they are not playable by default
[divverent/nexuiz.git] / data / qcsrc / menu / nexuiz / util.qh
1 void forAllDescendants(entity root, void(entity, entity) funcPre, void(entity, entity) funcPost, entity pass);
2 void saveAllCvars(entity root);
3 void loadAllCvars(entity root);
4
5 void makeMulti(entity me, string otherCvars);
6 void makeCallback(entity me, entity cbent, void(entity, entity) cbfunc);
7
8 void setDependent(entity e, string theCvarName, float theCvarMin, float theCvarMax);
9 void setDependentAND(entity e, string theCvarName, float theCvarMin, float theCvarMax, string theCvar2Name, float theCvar2Min, float theCvar2Max);
10 void setDependentOR(entity e, string theCvarName, float theCvarMin, float theCvarMax, string theCvar2Name, float theCvar2Min, float theCvar2Max);
11 void setDependentAND3(entity e, string theCvarName, float theCvarMin, float theCvarMax, string theCvar2Name, float theCvar2Min, float theCvar2Max, string theCvar3Name, float theCvar3Min, float theCvar3Max);
12 void setDependentStringNotEqual(entity e, string theCvarName, string theCvarValue);
13
14 float tooltipdb;
15 void loadTooltips();
16 void unloadTooltips();
17 string getZonedTooltipForIdentifier(string s);