ACE3/addons/maptools/ACE_Settings.hpp
PabstMirror 1be926f3db Make rotation key a client setting
Improve compatibility with other addons
2016-06-07 11:52:28 -05:00

11 lines
342 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"};
};
};