mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
717 B
C++
21 lines
717 B
C++
class ACE_Settings {
|
|
class GVAR(defaultLockpickStrength) {
|
|
displayName = CSTRING(DefaultLockpickStrength_DisplayName);
|
|
description = CSTRING(DefaultLockpickStrength_Description);
|
|
value = 10;
|
|
typeName = "SCALAR";
|
|
};
|
|
class GVAR(lockVehicleInventory) {
|
|
displayName = CSTRING(LockVehicleInventory_DisplayName);
|
|
description = CSTRING(LockVehicleInventory_Description);
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
};
|
|
class GVAR(vehicleStartingLockState) {
|
|
displayName = CSTRING(VehicleStartingLockState_DisplayName);
|
|
description = CSTRING(VehicleStartingLockState_Description);
|
|
value = -1;
|
|
typeName = "SCALAR";
|
|
};
|
|
};
|