From f95068d73410aa6d01e8ba91b430ca05d404a57b Mon Sep 17 00:00:00 2001 From: BoredGuy Date: Tue, 26 Aug 2025 19:54:09 +0300 Subject: Added barrel, next up sprite Z-sorting(ugh) --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 343273c..e1f84a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,13 +15,17 @@ add_executable(game "include/assets.h" "include/background.h" "include/utils.h" - + "include/barrel.h" + "include/player_data.h" + "include/barrel_data.h" + "src/game.c" "src/main.c" "src/player.c" "src/assets.c" "src/background.c" "src/physics.c" + "src/barrel.c" ) target_include_directories(game PRIVATE "include") -- cgit v1.2.3