From 65a2ceda55198dab3bab75c06c0d50adeb0a1101 Mon Sep 17 00:00:00 2001 From: Xander Swan <[hidden email]> Date: Thu, 1 Jan 2026 18:32:20 -0500 Subject: lots of changes + player dash --- src/input.odin | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/input.odin') diff --git a/src/input.odin b/src/input.odin index de2af7e..475be92 100644 --- a/src/input.odin +++ b/src/input.odin @@ -17,12 +17,14 @@ actions: struct { move_left: Keybind, move_right: Keybind, jump: Keybind, + dash: Keybind, } init_keybinds :: proc() { actions.move_left.input = .A actions.move_right.input = .D actions.jump.input = .SPACE + actions.dash.input = .LEFT_SHIFT } is_keybind_down :: proc(keybind: Keybind) -> bool { -- cgit v1.3-2-g0d8e