function mysplit (inputstr, sep)
if sep == nil then
sep = "%s"
end
local t={}
for str in string.gmatch(inputstr, "([^"..sep.."]+)") do
table.insert(t, str)
end
return t
end
player = {x = 10, y = 20, onGround = false}
boss
оно будет работать примерно также как если бы я скопировал код из boss.lua на место строки boss?