update: stream,schedule,packages (1 files)

This commit is contained in:
2025-12-26 01:05:01 +00:00
parent 818614f0cd
commit b28488641c

View File

@@ -0,0 +1,12 @@
local M = {}
function M.next_scene(schedule, current_index)
local index = current_index or 1
local entry = schedule[index]
if not entry then
return nil
end
return entry.scene
end
return M