diff options
author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2023-03-13 17:10:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 17:10:26 +0100 |
commit | 5a747929ed2099755fb03c930ea68c77fda805b3 (patch) | |
tree | c32d981fb030e05754671f359f1a76eb3d0ded32 /src/makefile | |
parent | 3c6648e99101e20873c952b3796b0f9e765378fc (diff) | |
parent | 2aa4abf6a3c268f7729f91b08115aac8f2e5bdae (diff) |
Merge pull request #28 from UnavailableDev/game-engine
Game engine
Diffstat (limited to 'src/makefile')
-rw-r--r-- | src/makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/makefile b/src/makefile index 96f3108..d7d9087 100644 --- a/src/makefile +++ b/src/makefile @@ -32,7 +32,12 @@ LOCAL_SRCS += main.c \ ppu/ppu.c \ demo.c \ engine/engine.c \ - engine/draw_screen.c + engine/sprite_controller.c \ + engine/player_controller.c \ + engine/draw_screen.c \ + engine/camera.c \ + engine/maths.c \ + engine/entity.c CFLAGS += $(SHARED_FLAGS) LFLAGS += $(SHARED_FLAGS) |