project-witchy/imperium-porcorum.love/scenes/levels/entities/collision/plateform.lua

12 lines
242 B
Lua

local Entity = require "scenes.levels.entities.parent"
local Platform = Entity:extend()
function Platform:new(world, x, y, w, h)
Platform.super.new(self, world, "platform", x, y, w, h)
self:setDebugColor(.3,.3,.3)
end
return Platform