Files
metabuilder/packages/ui_level4/seed/scripts/layout/god_content.lua

20 lines
437 B
Lua

-- Level 4 God panel content component
-- Represents the main content area of the God panel layout
---@class UIComponent
---@field type string
---@field fullWidth boolean
---@field children? UIComponent[]
---@param children? UIComponent[]
---@return UIComponent
local function god_content(children)
return {
type = "god_content",
fullWidth = true,
children = children or {}
}
end
return god_content