mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
590 B
C++
23 lines
590 B
C++
class ACE_Settings {
|
|
class GVAR(EnableCombatDeafness) {
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(CombatDeafness_DisplayName);
|
|
description = CSTRING(CombatDeafness_Description);
|
|
};
|
|
class GVAR(EarplugsVolume) {
|
|
value = 0.5;
|
|
typeName = "SCALAR";
|
|
};
|
|
class GVAR(UnconsciousnessVolume) {
|
|
value = 0.4;
|
|
typeName = "SCALAR";
|
|
};
|
|
class GVAR(DisableEarRinging) {
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
isClientSettable = 1;
|
|
displayName = CSTRING(DisableEarRinging);
|
|
};
|
|
};
|