From 012a78995d9e360de1d931943b34f21d4f4a85af Mon Sep 17 00:00:00 2001 From: iamcheeseman <[hidden email]> Date: Thu, 15 Jan 2026 17:12:31 -0500 Subject: Make minor fixes --- src/input.odin | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/input.odin') diff --git a/src/input.odin b/src/input.odin index 7ba2884..8326564 100644 --- a/src/input.odin +++ b/src/input.odin @@ -2,13 +2,16 @@ package demonchime import rl "vendor:raylib" -KeybindInput :: union { +KeyboardInput :: union { rl.KeyboardKey, rl.MouseButton, } +ControllerInput :: union { +} + Keybind :: struct { - input: KeybindInput, + input: KeyboardInput, pressed: bool, just_pressed: bool, } -- cgit v1.3-2-g0d8e