]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/menu/nexuiz/util.qh
r4417 | div0 | 2008-09-08 19:51:33 +0200 (Mon, 08 Sep 2008) | 2 lines
[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
7 void setDependent(entity e, string theCvarName, float theCvarMin, float theCvarMax);
8 void setDependentAND(entity e, string theCvarName, float theCvarMin, float theCvarMax, string theCvar2Name, float theCvar2Min, float theCvar2Max);
9 void setDependentOR(entity e, string theCvarName, float theCvarMin, float theCvarMax, string theCvar2Name, float theCvar2Min, float theCvar2Max);
10 void setDependentStringNotEqual(entity e, string theCvarName, string theCvarValue);