diff options
author | Aki <nthirtyone@gmail.com> | 2016-05-14 16:54:53 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2016-05-14 16:54:53 +0200 |
commit | 20ed15b3a008fcc4f90c2bd32cc2e36e49072554 (patch) | |
tree | 2762ecf6944d1214bc48cccf83acf204e20491c8 | |
parent | 3308a3d15e9b06529d5093d8551d4868e7fc7eff (diff) | |
download | roflnauts-20ed15b3a008fcc4f90c2bd32cc2e36e49072554.zip roflnauts-20ed15b3a008fcc4f90c2bd32cc2e36e49072554.tar.gz roflnauts-20ed15b3a008fcc4f90c2bd32cc2e36e49072554.tar.bz2 |
Revert "Revert "Marked Issue #8""
This reverts commit 3308a3d15e9b06529d5093d8551d4868e7fc7eff.
-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") |