mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
20 lines
437 B
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
|