ACE3/addons/captives/ACE_Settings.hpp

15 lines
480 B
C++
Raw Normal View History

class ACE_Settings {
class GVAR(allowHandcuffOwnSide) {
2015-06-06 02:02:24 +00:00
displayName = CSTRING(ModuleSettings_handcuffSide_name);
description = CSTRING(ModuleSettings_handcuffSide_description);
typeName = "BOOL";
value = 1;
};
class GVAR(allowSurrender) {
2015-06-06 02:02:24 +00:00
displayName = CSTRING(ModuleSettings_allowSurrender_name);
description = CSTRING(ModuleSettings_allowSurrender_description);
typeName = "BOOL";
value = 1;
};
};