Update

Update

Update

Update

Update

Update

Update

Update

Update
This commit is contained in:
2025-05-04 20:46:46 +02:00
parent 169a514973
commit 8e28d1a570
38 changed files with 2668 additions and 89 deletions

16
ui/Object.lua Normal file
View 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,
}