diff options
Diffstat (limited to 'cloud.lua')
-rw-r--r-- | cloud.lua | 21 |
1 files changed, 0 insertions, 21 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 |