mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
13 lines
204 B
Lua
13 lines
204 B
Lua
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
|