docs: add function-level documentation comments across various source files to improve the readability of codebase

This commit is contained in:
Bluewhale1337
2026-08-24 12:42:23 +02:00
parent d09e49d26a
commit 6d977f6963
24 changed files with 335 additions and 27 deletions
+2
View File
@@ -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