21 lines
No EOL
332 B
Lua
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 |