From ee655819d44307d974fb27e1fa04d079a3810d63 Mon Sep 17 00:00:00 2001 From: quou Date: Mon, 30 Sep 2024 22:13:31 +1000 Subject: enemy --- Makefile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7be7f78..c0a7b45 100644 --- a/Makefile +++ b/Makefile @@ -46,6 +46,8 @@ sources = \ 1bitjam.c \ animation.c \ asset.c \ + deathzone.c \ + enemy.c \ map.c \ maths.c \ memory.c \ @@ -59,11 +61,20 @@ sources = \ image_sources = \ $(int_dir)/arms.bmp \ + $(int_dir)/npc.bmp \ $(int_dir)/guy.bmp \ $(int_dir)/map.bmp \ $(int_dir)/mask.bmp \ anim_sources = \ + $(int_dir)/demon_fly_left.anm \ + $(int_dir)/demon_fly_right.anm \ + $(int_dir)/demon_idle_left.anm \ + $(int_dir)/demon_idle_right.anm \ + $(int_dir)/demon_jump_left.anm \ + $(int_dir)/demon_jump_right.anm \ + $(int_dir)/demon_walk_left.anm \ + $(int_dir)/demon_walk_right.anm \ $(int_dir)/guy_fall_left.anm \ $(int_dir)/guy_fall_right.anm \ $(int_dir)/guy_idle_left.anm \ @@ -74,8 +85,8 @@ anim_sources = \ $(int_dir)/guy_run_right.anm \ $(int_dir)/guy_slash_left.anm \ $(int_dir)/guy_slash_right.anm \ - $(int_dir)/slash_right.anm \ $(int_dir)/slash_left.anm \ + $(int_dir)/slash_right.anm \ objects = $(sources:%.c=%.o) images = $(image_sources:$(int_dir)/%.bmp=$(data_dir)/%.img) -- cgit v1.2.3-54-g00ecf