diff options
-rw-r--r-- | cloud.lua | 21 | ||||
-rw-r--r-- | player.lua | 2 |
2 files changed, 22 insertions, 1 deletions
diff --git a/cloud.lua b/cloud.lua new file mode 100644 index 0000000..d825eda --- /dev/null +++ b/cloud.lua @@ -0,0 +1,21 @@ +-- `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 +-- REWORK NEEDED Issue #8 function Player:hit (horizontal, vertical) if vertical == -1 then self:changeAnimation("attack_up") |