mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
865 B
C++
27 lines
865 B
C++
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);
|
|
typeName = "SCALAR";
|
|
value = 0.05;
|
|
};
|
|
class GVAR(simulationRadius) {
|
|
displayName = CSTRING(simulationRadius_DisplayName);
|
|
description = CSTRING(simulationRadius_Description);
|
|
typeName = "SCALAR";
|
|
value = 3000;
|
|
};
|
|
};
|