mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 08:14:57 +00:00
21 lines
432 B
Lua
21 lines
432 B
Lua
-- Level 5 Supergod panel content
|
|
|
|
---@class UIComponent
|
|
---@field type string
|
|
---@field fullWidth? boolean
|
|
---@field multiTenant? boolean
|
|
---@field children? table[]
|
|
|
|
---@param children? table[]
|
|
---@return UIComponent
|
|
local function supergod_content(children)
|
|
return {
|
|
type = "supergod_content",
|
|
fullWidth = true,
|
|
multiTenant = true,
|
|
children = children or {}
|
|
}
|
|
end
|
|
|
|
return supergod_content
|