mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
12 lines
455 B
C++
12 lines
455 B
C++
class ACE_Settings {
|
|
class GVAR(showOnInteractionMenu) {
|
|
value = 2;
|
|
typeName = "SCALAR";
|
|
isClientSettable = 1;
|
|
category = ECSTRING(interact_menu,Category_InteractionMenu);
|
|
displayName = CSTRING(showOnInteractionMenu_displayName);
|
|
description = CSTRING(showOnInteractionMenu_description);
|
|
values[] = {"$STR_A3_OPTIONS_DISABLED", CSTRING(justKeybinds), CSTRING(keysAndInteractionMenu)};
|
|
};
|
|
};
|