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 ba1f7e14bf
38 changed files with 2952 additions and 90 deletions

20
ui/Font.lua Normal file
View File

@@ -0,0 +1,20 @@
---@meta
---@class Font : FontInstance
Font = {
--- Gets the font object's font path, height, and flags.
--- @return string path The font path.
--- @return number height The font height.
--- @return string flags The font flags.
--- @example
--- local path, height, flags = myFont:GetFont()
GetFont = function(self) end,
--- Sets the font object's font path, height, and flags.
--- @param path string The font path.
--- @param height number The font height.
--- @param flags string? Optional. The font flags.
--- @example
--- myFont:SetFont("Fonts\\FRIZQT__.TTF", 12, "OUTLINE")
SetFont = function(self, path, height, flags) end,
}