aboutsummaryrefslogtreecommitdiff
path: root/main.lua
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-03-13 20:07:31 -0400
committeriamcheeseman <[email protected]>2026-03-13 20:07:31 -0400
commitcc679988babf47d5752c609ee90444db22d2d1fe (patch)
tree46d1e8abd7ae56535afdf4910f9ba41ad65d40d9 /main.lua
parente09caf3cf41ac3e3ea7ec252a21a7ac5b7fbb52c (diff)
Player can dash
Diffstat (limited to 'main.lua')
-rw-r--r--main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.lua b/main.lua
index 4c943e3..2b2e380 100644
--- a/main.lua
+++ b/main.lua
@@ -7,7 +7,7 @@ function love.load()
main_init()
local scn = new_scene()
event_bind(scn.on_update, "Body", body_sys)
- event_bind(scn.on_update, "Player", player_movement_sys)
+ event_bind(scn.on_update, "State_Machine", state_update_sys)
event_bind(scn.on_update, "Sprite", sprite_anim_sys)
event_bind(scn.on_draw, "Sprite", sprite_draw_sys)