Update
Update Update Update Update Update Update Update Update Update
This commit is contained in:
16
ui/Object.lua
Normal file
16
ui/Object.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
---@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,
|
||||
}
|
||||
Reference in New Issue
Block a user