From a72420a85fdfe85d6a6e67b8c70ed11537d532bd Mon Sep 17 00:00:00 2001 From: quou Date: Sat, 6 May 2023 20:30:58 +1000 Subject: Work on visual effects; Debris and player bullet impact effects. --- game.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'game.c') diff --git a/game.c b/game.c index 7eebb8b..f5edb8a 100644 --- a/game.c +++ b/game.c @@ -176,11 +176,12 @@ static void gameplay_update(Game* game) { update_player(player, world); enemy_system(world); + debris_system(world); bullet_system(world); collision_system(world); animation_system(world); - render_map(&world->map, cx, cy); update_camera(player, world); + render_map(&world->map, cx, cy); sprite_system(world); render_hud(game); -- cgit v1.2.3-54-g00ecf