chroma_solstice/wall.lua

23 lines
289 B
Lua
Raw Normal View History

2015-03-12 03:04:09 -04:00
require "entity"
Wall = class("Wall", Entity)
function Wall:initialize(x, y, color)
Entity.initialize(self, {
x = x,
y = y,
sizeX = 1,
sizeY = 1,
color = color,
collision = "unmoveable",
sprite = wallSprite
})
end
function Wall:update(dt)
end
function Wall:tick()
end