mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
de1c4bc4d9
* Draw Straight Lines * Fix roamer sides, handle closing map mid-draw * Add missing privates / formula notes
18 lines
582 B
C++
18 lines
582 B
C++
class ACE_Settings {
|
|
class GVAR(rotateModifierKey) {
|
|
value = 1;
|
|
typeName = "SCALAR";
|
|
isClientSettable = 1;
|
|
displayName = CSTRING(rotateModifierKey_displayName);
|
|
description = CSTRING(rotateModifierKey_description);
|
|
values[] = {"$STR_A3_OPTIONS_DISABLED", "ALT", "CTRL", "SHIFT"};
|
|
};
|
|
class GVAR(drawStaightLines) {
|
|
value = 1;
|
|
typeName = "BOOL";
|
|
isClientSettable = 1;
|
|
displayName = CSTRING(drawStaightLines_displayName);
|
|
description = CSTRING(drawStaightLines_description);
|
|
};
|
|
};
|