mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
856 B
C++
28 lines
856 B
C++
class ACE_Settings {
|
|
class GVAR(enabled) {
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(enabled_displayName);
|
|
};
|
|
class GVAR(maxRange) {
|
|
value = 4;
|
|
typeName = "SCALAR";
|
|
displayName = CSTRING(maxRange_displayName);
|
|
description = CSTRING(maxRange_description);
|
|
};
|
|
class GVAR(indicatorForSelf) {
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
isClientSettable = 1;
|
|
displayName = CSTRING(indicatorForSelf_name);
|
|
description = CSTRING(indicatorForSelf_description);
|
|
};
|
|
class GVAR(indicatorColor) {
|
|
value[] = {0.83, 0.68, 0.21, 0.75};
|
|
typeName = "COLOR";
|
|
isClientSettable = 1;
|
|
displayName = CSTRING(indicatorColor_name);
|
|
description = CSTRING(indicatorColor_description);
|
|
};
|
|
};
|