diff options
-rw-r--r-- | cloud.lua | 21 | ||||
-rw-r--r-- | player.lua | 2 |
2 files changed, 1 insertions, 22 deletions
diff --git a/cloud.lua b/cloud.lua deleted file mode 100644 index d825eda..0000000 --- a/cloud.lua +++ /dev/null @@ -1,21 +0,0 @@ --- `Cloud` --- That white thing moving in the background. - --- WHOLE CODE HAS FLAG OF "need a cleanup" - --- Metatable of `Cloud` -Cloud = { - x = 0, - y = 0, - sprite = love.graphics.newImage("assets/clouds.png") -} - --- Constructor of `Cloud` -function Cloud:new() - -- Meta - local o = {} - setmetatable(o, self) - self.__index = self - -- Misc - return o -end
\ No newline at end of file @@ -214,7 +214,7 @@ function Player:changeAnimation(animation) end -- Punch of `Player` --- REWORK NEEDED Issue #8 +-- REWORK NEEDED function Player:hit (horizontal, vertical) if vertical == -1 then self:changeAnimation("attack_up") |