diff options
Diffstat (limited to 'ReiLua_API.lua')
| -rw-r--r-- | ReiLua_API.lua | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/ReiLua_API.lua b/ReiLua_API.lua index 019138f..27acb0f 100644 --- a/ReiLua_API.lua +++ b/ReiLua_API.lua @@ -6328,11 +6328,18 @@ function RL.GuiIconText( iconId, text ) end ---@return any RL.GuiSetIconScale function RL.GuiSetIconScale( scale ) end ----Get raygui icons data pointer ----- Success return int ----@return any icons +---Get raygui icons data in buffer. guiIcons size is by default: 256*(16*16/32) = 2048*4 = 8192 bytes = 8 KB +---- Success return Buffer +---@return any iconsBuffer function RL.GuiGetIcons() end +---Set raygui icons data in buffer. guiIcons size is by default: 256*(16*16/32) = 2048*4 = 8192 bytes = 8 KB +---- Failure return false +---- Success return true +---@param iconBuffer any +---@return any success +function RL.GuiSetIcons( iconBuffer ) end + ---Load raygui icons file (.rgi) into internal icons data ---- Failure return nil ---- Success return strings{} |
