mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
15 lines
524 B
C++
15 lines
524 B
C++
|
class ACE_Settings {
|
||
|
class GVAR(allowHandcuffOwnSide) {
|
||
|
displayName = "$STR_ACE_Captives_ModuleSettings_handcuffSide_name";
|
||
|
description = "$STR_ACE_Captives_ModuleSettings_handcuffSide_description";
|
||
|
typeName = "BOOL";
|
||
|
value = 1;
|
||
|
};
|
||
|
class GVAR(allowSurrender) {
|
||
|
displayName = "$STR_ACE_Captives_ModuleSettings_allowSurrender_name";
|
||
|
description = "$STR_ACE_Captives_ModuleSettings_allowSurrender_description";
|
||
|
typeName = "BOOL";
|
||
|
value = 1;
|
||
|
};
|
||
|
};
|