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

17
ui/Translation.lua Normal file
View File

@@ -0,0 +1,17 @@
---@meta
---@class Translation : Animation
Translation = {
--- Gets the offset values.
--- @return number offsetX, number offsetY The x and y offsets.
--- @example
--- local offsetX, offsetY = myTranslation:GetOffset()
GetOffset = function(self) end,
--- Sets the offset values.
--- @param offsetX number The x offset.
--- @param offsetY number The y offset.
--- @example
--- myTranslation:SetOffset(100, 50)
SetOffset = function(self, offsetX, offsetY) end,
}