rename folder src to concord

This commit is contained in:
Tjakka5 2020-01-04 10:50:13 +01:00
parent 451b88cdea
commit f502f1b9f6
14 changed files with 0 additions and 0 deletions

View file

@ -1,15 +0,0 @@
--- Utils
-- Helper module for misc operations
local Utils = {}
--- Does a shallow copy of a table and appends it to a target table.
-- @param orig Table to copy
-- @param target Table to append to
function Utils.shallowCopy(orig, target)
for key, value in pairs(orig) do
target[key] = value
end
end
return Utils