mirror of
https://github.com/Bluewhale1337/HealBotBlue.git
synced 2026-09-11 09:50:21 +00:00
docs: add function-level documentation comments across various source files to improve the readability of codebase
This commit is contained in:
@@ -579,6 +579,7 @@ HealBot_IamRessing = false;
|
||||
|
||||
-- Table Recycling Pool
|
||||
local tablePool = {}
|
||||
-- HealBot_GetTable: Internal utility: HealBot_GetTable
|
||||
function HealBot_GetTable()
|
||||
local t = table.remove(tablePool)
|
||||
if not t then
|
||||
@@ -587,6 +588,7 @@ function HealBot_GetTable()
|
||||
return t
|
||||
end
|
||||
|
||||
-- HealBot_ReleaseTable: Internal utility: HealBot_ReleaseTable
|
||||
function HealBot_ReleaseTable(t)
|
||||
if type(t) == "table" then
|
||||
for k in pairs(t) do
|
||||
|
||||
Reference in New Issue
Block a user