mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 06:44:58 +00:00
14 lines
170 B
Lua
14 lines
170 B
Lua
local M = {}
|
|
|
|
local routes = {
|
|
intro = "studio_a",
|
|
main = "studio_b",
|
|
qa = "studio_c"
|
|
}
|
|
|
|
function M.route(scene)
|
|
return routes[scene] or "studio_b"
|
|
end
|
|
|
|
return M
|