mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
653 B
C++
20 lines
653 B
C++
class ACE_Settings {
|
|
class GVAR(rotateModifierKey) {
|
|
category = CSTRING(Name);
|
|
value = 1;
|
|
typeName = "SCALAR";
|
|
isClientSettable = 1;
|
|
displayName = CSTRING(rotateModifierKey_displayName);
|
|
description = CSTRING(rotateModifierKey_description);
|
|
values[] = {"$STR_A3_OPTIONS_DISABLED", "ALT", "CTRL", "SHIFT"};
|
|
};
|
|
class GVAR(drawStraightLines) {
|
|
category = CSTRING(Name);
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
isClientSettable = 1;
|
|
displayName = CSTRING(drawStraightLines_displayName);
|
|
description = CSTRING(drawStraightLines_description);
|
|
};
|
|
};
|