diff options
author | quou <quou@disroot.org> | 2024-10-08 19:56:08 +1100 |
---|---|---|
committer | quou <quou@disroot.org> | 2024-10-08 19:56:08 +1100 |
commit | 9add408984464bd6b3cc018bb14c3d69ad0a2898 (patch) | |
tree | dde2af5525fd076d03c5c8e14067a4502aa1051e /Makefile | |
parent | b5c69695c9c97c09f7ffa4d5a600d88cc06ee6da (diff) |
New flying enemy that drops arrows
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -58,6 +58,7 @@ sources = \ physics.c \ plat.c \ player.c \ + projectile.c \ random.c \ rect.c \ render.c \ @@ -73,6 +74,7 @@ image_sources = \ $(int_dir)/rooms.bmp \ anim_sources = \ + $(int_dir)/arrow.anm \ $(int_dir)/demon_fly_left.anm \ $(int_dir)/demon_fly_right.anm \ $(int_dir)/demon_idle_left.anm \ @@ -83,6 +85,8 @@ anim_sources = \ $(int_dir)/demon_walk_right.anm \ $(int_dir)/fade_in.anm \ $(int_dir)/fade_out.anm \ + $(int_dir)/fly_left.anm \ + $(int_dir)/fly_right.anm \ $(int_dir)/guy_fall_left.anm \ $(int_dir)/guy_fall_right.anm \ $(int_dir)/guy_idle_left.anm \ |