mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
600 B
C++
24 lines
600 B
C++
class ACE_Settings {
|
|
//These settings effect gameplay difficutly: defaults will leave the mortar the same as vanilla
|
|
class GVAR(airResistanceEnabled) {
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
isClientSetable = 0;
|
|
};
|
|
class GVAR(allowComputerRangefinder) {
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
isClientSetable = 0;
|
|
};
|
|
class GVAR(allowCompass) {
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
isClientSetable = 0;
|
|
};
|
|
class GVAR(useAmmoHandling) {
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
isClientSetable = 0;
|
|
};
|
|
};
|