mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
745 B
C++
24 lines
745 B
C++
|
|
class ACE_Settings {
|
|
class GVAR(savePreDeathGear) {
|
|
category = CSTRING(DisplayName);
|
|
displayName = CSTRING(SavePreDeathGear_DisplayName);
|
|
description = CSTRING(SavePreDeathGear_Description);
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
};
|
|
class GVAR(removeDeadBodiesDisconnected) {
|
|
category = CSTRING(DisplayName);
|
|
displayName = CSTRING(RemoveDeadBodiesDisconnected_DisplayName);
|
|
description = CSTRING(RemoveDeadBodiesDisconnected_Description);
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
};
|
|
class GVAR(bodyRemoveTimer) {
|
|
category = CSTRING(DisplayName);
|
|
displayName = CSTRING(DeadBodyRemoveTimer);
|
|
value = 0;
|
|
typeName = "SCALAR";
|
|
};
|
|
};
|