This commit is contained in:
0x81c 2015-03-25 01:38:53 -04:00 committed by Your Name
parent b19f58726c
commit 01d272981e
133 changed files with 822 additions and 66 deletions

21
generic_unmoveable.lua Normal file
View file

@ -0,0 +1,21 @@
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