Merge pull request #11242 from Markolie/hotkeymode

Hotkey mode handling is now instantaneous
This commit is contained in:
variableundefined
2019-04-07 21:21:21 +08:00
committed by GitHub
10 changed files with 757 additions and 800 deletions
+19
View File
@@ -0,0 +1,19 @@
/datum/hotkey_mode
var/name
var/macro_hotkeys_inactive
var/macro_hotkeys_active
/datum/hotkey_mode/qwerty
name = "QWERTY"
macro_hotkeys_inactive = "macro"
macro_hotkeys_active = "hotkeymode"
/datum/hotkey_mode/azerty
name = "AZERTY"
macro_hotkeys_inactive = "azertymacro"
macro_hotkeys_active = "azertyhotkeymode"
/datum/hotkey_mode/cyborg
name = "Cyborg"
macro_hotkeys_inactive = "borgmacro"
macro_hotkeys_active = "borghotkeymode"