From 7664fdafb9a6d6f4aa3339fe38958b24b234218e Mon Sep 17 00:00:00 2001 From: quou Date: Mon, 30 Sep 2024 19:01:53 +1000 Subject: player slashing --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4c755b9..74ad6e3 100644 --- a/Makefile +++ b/Makefile @@ -49,16 +49,19 @@ sources = \ map.c \ maths.c \ memory.c \ + particle.c \ physics.c \ plat.c \ player.c \ rect.c \ render.c \ + world.c \ image_sources = \ + $(int_dir)/arms.bmp \ $(int_dir)/guy.bmp \ $(int_dir)/map.bmp \ - $(int_dir)/mask.bmp + $(int_dir)/mask.bmp \ anim_sources = \ $(int_dir)/guy_fall_left.anm \ @@ -69,6 +72,8 @@ anim_sources = \ $(int_dir)/guy_jump_right.anm \ $(int_dir)/guy_run_left.anm \ $(int_dir)/guy_run_right.anm \ + $(int_dir)/slash_right.anm \ + $(int_dir)/slash_left.anm \ objects = $(sources:%.c=%.o) images = $(image_sources:$(int_dir)/%.bmp=$(data_dir)/%.img) -- cgit v1.2.3-54-g00ecf