chroma_solstice/generic_unmoveable.lua
2026-08-06 23:15:48 -04:00

21 lines
No EOL
332 B
Lua

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