mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
15 lines
480 B
C++
15 lines
480 B
C++
class ACE_Settings {
|
|
class GVAR(allowHandcuffOwnSide) {
|
|
displayName = CSTRING(ModuleSettings_handcuffSide_name);
|
|
description = CSTRING(ModuleSettings_handcuffSide_description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
class GVAR(allowSurrender) {
|
|
displayName = CSTRING(ModuleSettings_allowSurrender_name);
|
|
description = CSTRING(ModuleSettings_allowSurrender_description);
|
|
typeName = "BOOL";
|
|
value = 1;
|
|
};
|
|
};
|