From fb104368dd33b66e0575dcc0327cbae7046a4e1e Mon Sep 17 00:00:00 2001 From: quou Date: Fri, 5 May 2023 13:44:23 +1000 Subject: Add killing enemies. --- main.c | 1 + 1 file changed, 1 insertion(+) (limited to 'main.c') diff --git a/main.c b/main.c index ef757b2..9d2aff8 100644 --- a/main.c +++ b/main.c @@ -27,6 +27,7 @@ void on_update() { update_player(&world.player, &world); enemy_system(&world); bullet_system(&world); + collision_system(&world); animation_system(&world); sprite_system(&world); } -- cgit v1.2.3-54-g00ecf