cleanup useless function

This commit is contained in:
lustlion 2022-03-13 09:34:34 +01:00
parent 5189bef537
commit a4af57ca6c

View File

@ -33,14 +33,6 @@ function isThereObjectAt(x,y,objectType)
return false return false
end end
function isThereCollisionAt(x,y)
if x >= 0 and x < #CollisionTable
and y >= 0 and y < #CollisionTable[0] then
return CollisionTable[math.floor(y)][math.floor(x)]
end
return false
end
-- flags -- flags
function setCollisionFlags() function setCollisionFlags()
local Check = { local Check = {