ACE3/addons/winddeflection/ACE_Settings.hpp

27 lines
865 B
C++
Raw Normal View History

class ACE_Settings {
class GVAR(enabled) {
displayName = CSTRING(deflectionModule_DisplayName);
description = CSTRING(deflectionModule_Description);
typeName = "BOOL";
value = 1;
};
class GVAR(vehicleEnabled) {
displayName = CSTRING(vehicleEnabled_DisplayName);
description = CSTRING(vehicleEnabled_Description);
typeName = "BOOL";
value = 1;
};
class GVAR(simulationInterval) {
displayName = CSTRING(simulationInterval_DisplayName);
description = CSTRING(simulationInterval_Description);
2015-04-12 10:52:13 +00:00
typeName = "SCALAR";
value = 0.05;
};
class GVAR(simulationRadius) {
displayName = CSTRING(simulationRadius_DisplayName);
description = CSTRING(simulationRadius_Description);
2015-04-12 10:52:13 +00:00
typeName = "SCALAR";
value = 3000;
};
};