From 815aec62f8ae3a403e913559d5fe6138c8825007 Mon Sep 17 00:00:00 2001 From: BoredGuy Date: Tue, 29 Jul 2025 11:50:57 +0300 Subject: Added background entity and asset system --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index a1560e9..c8989c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,10 +12,14 @@ add_executable(game "include/constants.h" "include/physics.h" "include/player.h" + "include/assets.h" + "include/background.h" "src/game.c" "src/main.c" "src/player.c" + "src/assets.c" + "src/background.c" ) target_include_directories(game PRIVATE "include") @@ -31,4 +35,4 @@ endif() if (MSVC) target_link_libraries(game winmm) -endif() \ No newline at end of file +endif() -- cgit v1.2.3