summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--cloud.lua21
-rw-r--r--player.lua2
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
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")