Remastering engine

This commit is contained in:
Ivan Grachyov
2021-11-12 00:07:30 +05:00
parent d73f424d7f
commit 902d2d18bb
8 changed files with 295 additions and 10 deletions

View File

@@ -34,16 +34,6 @@ function table.deepcopy(orig)
return copy
end
function table.merge(table1, table2)
local newTable = table.deepcopy(table1)
for k, v in pairs(table2) do
newTable[k] = v
end
return newTable
end
function table.contains(tbl, ...)
local argCount = #arg