mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +00:00
18 lines
281 B
Lua
18 lines
281 B
Lua
---@class SceneRouter
|
|
local M = {}
|
|
|
|
---@type table<string, string>
|
|
local routes = {
|
|
intro = "studio_a",
|
|
main = "studio_b",
|
|
qa = "studio_c"
|
|
}
|
|
|
|
---@param scene string
|
|
---@return string
|
|
function M.route(scene)
|
|
return routes[scene] or "studio_b"
|
|
end
|
|
|
|
return M
|