1bd73d69fe
- keyframeGetValue now returns the last keyframe's value for times at or beyond it, fixes a missing util/math.h include, and asserts keyframes are sorted by time; adds test/animation/test_keyframe.c - Adds mainmenu scene/UI and a battle HUD UI frame - Adds save autosave-related fields and battle scene tweaks - Adds headless test coverage for cutscenes, entities, and map areas
16 lines
327 B
CMake
16 lines
327 B
CMake
# Copyright (c) 2026 Dominic Masters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
target_sources(${DUSK_LIBRARY_TARGET_NAME}
|
|
PUBLIC
|
|
scene.c
|
|
scenetype.c
|
|
)
|
|
|
|
# Subdirs
|
|
add_subdirectory(initial)
|
|
add_subdirectory(mainmenu)
|
|
add_subdirectory(overworld)
|
|
add_subdirectory(battle) |