ACE3/addons/mk6mortar/ACE_Settings.hpp
2016-03-08 01:17:40 -06:00

32 lines
1.1 KiB
C++

class ACE_Settings {
//These settings effect gameplay difficutly: defaults will leave the mortar the same as vanilla
class GVAR(airResistanceEnabled) {
displayName = CSTRING(airResistanceEnabled_DisplayName);
description = CSTRING(airResistanceEnabled_Description);
value = 0;
typeName = "BOOL";
isClientSetable = 0;
};
class GVAR(allowComputerRangefinder) {
displayName = CSTRING(allowComputerRangefinder_DisplayName);
description = CSTRING(allowComputerRangefinder_Description);
value = 1;
typeName = "BOOL";
isClientSetable = 0;
};
class GVAR(allowCompass) {
displayName = CSTRING(allowCompass_DisplayName);
description = CSTRING(allowCompass_Description);
value = 1;
typeName = "BOOL";
isClientSetable = 0;
};
class GVAR(useAmmoHandling) {
displayName = CSTRING(useAmmoHandling_DisplayName);
description = CSTRING(useAmmoHandling_Description);
value = 0;
typeName = "BOOL";
isClientSetable = 0;
};
};