ACE3/addons/finger/ACE_Settings.hpp

28 lines
856 B
C++
Raw Normal View History

class ACE_Settings {
2015-06-09 19:02:19 +00:00
class GVAR(enabled) {
2015-07-26 05:48:53 +00:00
value = 0;
2015-06-09 19:02:19 +00:00
typeName = "BOOL";
displayName = CSTRING(enabled_displayName);
};
2015-06-09 01:34:29 +00:00
class GVAR(maxRange) {
value = 4;
2015-06-09 05:00:00 +00:00
typeName = "SCALAR";
displayName = CSTRING(maxRange_displayName);
description = CSTRING(maxRange_description);
2015-06-09 01:34:29 +00:00
};
class GVAR(indicatorForSelf) {
2015-06-09 05:00:00 +00:00
value = 1;
typeName = "BOOL";
isClientSettable = 1;
2015-06-09 01:34:29 +00:00
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);
};
};