mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
25 lines
842 B
C++
25 lines
842 B
C++
|
class ACE_Settings {
|
||
|
class EGVAR(medical,bleedingCoefficient) {
|
||
|
category = CSTRING(Category_Medical);
|
||
|
displayName = CSTRING(bleedingCoefficient_DisplayName);
|
||
|
description = CSTRING(bleedingCoefficient_Description);
|
||
|
typeName = "SCALAR";
|
||
|
value = 1;
|
||
|
sliderSettings[] = {0, 25, 1, 1};
|
||
|
};
|
||
|
class EGVAR(medical,painCoefficient) {
|
||
|
category = CSTRING(Category_Medical);
|
||
|
displayName = CSTRING(painCoefficient_DisplayName);
|
||
|
description = CSTRING(painCoefficient_Description);
|
||
|
typeName = "SCALAR";
|
||
|
value = 1;
|
||
|
sliderSettings[] = {0, 25, 1, 1};
|
||
|
};
|
||
|
class GVAR(ivFlowRate) {
|
||
|
displayName = CSTRING(ivFlowRate_DisplayName);
|
||
|
description = CSTRING(ivFlowRate_Description);
|
||
|
typeName = "SCALAR";
|
||
|
value = 1;
|
||
|
};
|
||
|
};
|