2015-04-27 10:28:56 +00:00
|
|
|
class ACE_Settings {
|
2017-11-10 14:44:15 +00:00
|
|
|
class GVAR(enabled) {
|
|
|
|
displayName = CSTRING(enabled_DisplayName);
|
|
|
|
description = CSTRING(enabled_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
2017-11-10 14:44:15 +00:00
|
|
|
class GVAR(updateInterval) {
|
|
|
|
displayName = CSTRING(updateInterval_DisplayName);
|
|
|
|
description = CSTRING(updateInterval_Description);
|
|
|
|
typeName = "SCALAR";
|
|
|
|
value = 60;
|
2015-04-27 10:28:56 +00:00
|
|
|
};
|
2017-11-10 14:44:15 +00:00
|
|
|
class GVAR(windSimulation) {
|
|
|
|
displayName = CSTRING(windSimulation_DisplayName);
|
|
|
|
description = CSTRING(windSimulation_Description);
|
2015-04-27 10:28:56 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
value = 1;
|
|
|
|
};
|
|
|
|
};
|