chroma_solstice/generic_unmoveable.lua

21 lines
332 B
Lua
Raw Permalink Normal View History

2015-03-25 01:38:53 -04:00
require "entity"
GenericUnmoveable = class("GenericUnmoveable", Entity)
function GenericUnmoveable:initialize(x, y, color, sprite)
Entity.initialize(self, {
x = x,
y = y,
color = color,
collision = "unmoveable",
sprite = sprite
})
end
function GenericUnmoveable:update(dt)
end
function GenericUnmoveable:tick()
end