mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
484 B
C++
19 lines
484 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;
|
||
|
};
|
||
|
};
|