add gs
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
local function assign(target, ...)
|
||||
for i = 1, select("#", ...) do
|
||||
local source = select(i, ...)
|
||||
|
||||
for key, value in pairs(source) do
|
||||
target[key] = value
|
||||
end
|
||||
end
|
||||
|
||||
return target
|
||||
end
|
||||
|
||||
return assign
|
||||
Reference in New Issue
Block a user