From 3308a3d15e9b06529d5093d8551d4868e7fc7eff Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 14 May 2016 16:54:41 +0200 Subject: Revert "Marked Issue #8" This reverts commit 88a7dd8e2e7793d86d2587547a6fa450fbf9acaa. --- cloud.lua | 21 --------------------- player.lua | 2 +- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 cloud.lua 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 diff --git a/player.lua b/player.lua index 099001f..8e216f2 100644 --- a/player.lua +++ b/player.lua @@ -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") -- cgit v1.1