]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/menu/nexuiz/util.qh
make deluxemapping also depend on lightmaps activated
[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 setDependentAND3(entity e, string theCvarName, float theCvarMin, float theCvarMax, string theCvar2Name, float theCvar2Min, float theCvar2Max, string theCvar3Name, float theCvar3Min, float theCvar3Max);
11 void setDependentStringNotEqual(entity e, string theCvarName, string theCvarValue);