feat(world): add skeleton for DayNight system

This commit is contained in:
VDm 2025-07-16 01:21:26 +04:00
parent 4418c789f9
commit 35e44e0976
14 changed files with 197 additions and 18 deletions

View file

@ -1,4 +1,8 @@
file(GLOB PRIVATE_SOURCES "*.cpp")
file(GLOB PRIVATE_SOURCES
"daynight/*.cpp"
"map/*.cpp"
"*.cpp"
)
add_library(world STATIC
${PRIVATE_SOURCES}
@ -13,4 +17,9 @@ target_link_libraries(world
PRIVATE
gx
model
PUBLIC
bc
common
storm
tempest
)