Switch to client-side hotkey toggling

This commit is contained in:
Mark van Alphen
2019-04-05 19:53:01 +02:00
parent aa44ffa74e
commit aa58a88296
10 changed files with 757 additions and 797 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"