mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +00:00
26 lines
577 B
Lua
26 lines
577 B
Lua
-- Level 4 God panel toolbar component
|
|
-- Represents the toolbar area of the God panel with system status
|
|
|
|
---@class ToolbarAction
|
|
---@field id string
|
|
---@field label string
|
|
---@field icon string
|
|
---@field onClick string
|
|
|
|
---@class UIComponent
|
|
---@field type string
|
|
---@field actions ToolbarAction[]
|
|
---@field showSystemStatus boolean
|
|
|
|
---@param actions? ToolbarAction[]
|
|
---@return UIComponent
|
|
local function god_toolbar(actions)
|
|
return {
|
|
type = "god_toolbar",
|
|
actions = actions or {},
|
|
showSystemStatus = true
|
|
}
|
|
end
|
|
|
|
return god_toolbar
|