streuner-game/src/engine/object.lua
2014-05-21 11:21:27 +02:00

11 lines
142 B
Lua

local object = {}
object.width = 64
object.height = 64
function object.sortNorthSouth(a, b)
return a.info.y < b.info.y
end
return object