diff options
| author | retucio <165311393+retuci0@users.noreply.github.com> | 2026-03-16 00:11:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-15 18:11:55 -0500 |
| commit | 9fde19eca074bd1e7e58f44294dceb1de8ea486e (patch) | |
| tree | 2a8be34be254b5a85155508264b9695db199c1cb /Minecraft.Client/Windows64/KeyboardMouseInput.h | |
| parent | e9f5b4b6f0bff50691acae160434c69c4a89231e (diff) | |
organized keybinds a lil bit (#1279)
Diffstat (limited to 'Minecraft.Client/Windows64/KeyboardMouseInput.h')
| -rw-r--r-- | Minecraft.Client/Windows64/KeyboardMouseInput.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Minecraft.Client/Windows64/KeyboardMouseInput.h b/Minecraft.Client/Windows64/KeyboardMouseInput.h index 0f14dfa1..2079a72a 100644 --- a/Minecraft.Client/Windows64/KeyboardMouseInput.h +++ b/Minecraft.Client/Windows64/KeyboardMouseInput.h @@ -25,12 +25,20 @@ public: static const int KEY_DROP = 'Q'; static const int KEY_CRAFTING = 'C'; static const int KEY_CRAFTING_ALT = 'R'; + static const int KEY_CHAT = 'T'; static const int KEY_CONFIRM = VK_RETURN; static const int KEY_CANCEL = VK_ESCAPE; static const int KEY_PAUSE = VK_ESCAPE; - static const int KEY_THIRD_PERSON = VK_F5; + static const int KEY_TOGGLE_HUD = VK_F1; static const int KEY_DEBUG_INFO = VK_F3; static const int KEY_DEBUG_MENU = VK_F4; + static const int KEY_THIRD_PERSON = VK_F5; + static const int KEY_DEBUG_CONSOLE = VK_F6; + static const int KEY_HOST_SETTINGS = VK_F8; + static const int KEY_FULLSCREEN = VK_F11; + + // todo: implement and shi + static const int KEY_SCREENSHOT = VK_F2; void Init(); void Tick(); |
