diff options
| author | quou <quou@disroot.org> | 2023-05-05 13:44:23 +1000 |
|---|---|---|
| committer | quou <quou@disroot.org> | 2023-05-05 13:44:23 +1000 |
| commit | fb104368dd33b66e0575dcc0327cbae7046a4e1e (patch) | |
| tree | 67a1a66182aa8417b8fbb431576528c28f4a5ab8 /main.c | |
| parent | 280552fa4750b5dac9243782f9c0a7e0b7eea6f8 (diff) | |
Add killing enemies.
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); } |