diff options
author | quou <quou@disroot.org> | 2024-09-30 19:01:53 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2024-09-30 19:01:53 +1000 |
commit | 7664fdafb9a6d6f4aa3339fe38958b24b234218e (patch) | |
tree | a1b1879403eab088aee66c091e476d407fe35402 /Makefile | |
parent | 98322a86ec78f732a5a6750a1e93061269cc76a7 (diff) |
player slashing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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) |