Files
wow_Meta/ui/UIObject.lua
2025-05-04 22:57:31 +02:00

23 lines
634 B
Lua

---@meta
---@class UIObject : Object
UIObject = {
--- Returns whether the object is loaded.
--- @return boolean isLoaded True if the object is loaded.
--- @example
--- local isLoaded = myUIObject:IsLoaded()
IsLoaded = function(self) end,
--- Returns whether the object is visible.
--- @return boolean isVisible True if the object is visible.
--- @example
--- local isVisible = myUIObject:IsVisible()
IsVisible = function(self) end,
--- Returns whether the object is shown.
--- @return boolean isShown True if the object is shown.
--- @example
--- local isShown = myUIObject:IsShown()
IsShown = function(self) end,
}