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

17 lines
384 B
Lua

---@meta
---@class Object
Object = {
--- Returns the name of the object.
--- @return string name The name of the object.
--- @example
--- local name = myObject:GetName()
GetName = function(self) end,
--- Returns the object's parent object.
--- @return Object parent The parent object.
--- @example
--- local parent = myObject:GetParent()
GetParent = function(self) end,
}