diff options
Diffstat (limited to 'game.c')
-rw-r--r-- | game.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |