diff options
author | BoredGuy <osome3717@gmail.com> | 2025-07-29 11:50:57 +0300 |
---|---|---|
committer | BoredGuy <osome3717@gmail.com> | 2025-07-29 11:50:57 +0300 |
commit | 815aec62f8ae3a403e913559d5fe6138c8825007 (patch) | |
tree | 3041d4b8a843c05a4da02e66d5e2f63e1e713b72 /CMakeLists.txt | |
parent | 9e1627c229d8d094c7b55751d82db9d3579a16e1 (diff) |
Added background entity and asset system
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
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() |