diff options
author | Aki <nthirtyone@gmail.com> | 2017-05-26 22:44:00 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-05-26 22:44:00 +0200 |
commit | b14d4608dc921f882067c43c71fcf04db7b2f794 (patch) | |
tree | 04c00f9dde638f0a1689f601f780975fdd158b24 /not/Decoration.lua | |
parent | 81e72006a4ca0578f0bbc31d0788a6e0223fdb63 (diff) | |
download | roflnauts-b14d4608dc921f882067c43c71fcf04db7b2f794.zip roflnauts-b14d4608dc921f882067c43c71fcf04db7b2f794.tar.gz roflnauts-b14d4608dc921f882067c43c71fcf04db7b2f794.tar.bz2 |
Rest of entities moved to new oop module; tested
Diffstat (limited to 'not/Decoration.lua')
-rw-r--r-- | not/Decoration.lua | 29 |
1 files changed, 10 insertions, 19 deletions
diff --git a/not/Decoration.lua b/not/Decoration.lua index 9dc2bdd..97524f5 100644 --- a/not/Decoration.lua +++ b/not/Decoration.lua @@ -1,26 +1,15 @@ +require "not.Entity" + --- `Decoration` -- Positioned sprite used to decorate maps with additional graphics. -Decoration = { - world = --[[not.World]]nil, - x = 0, - y = 0 -} +Decoration = Entity:extends() --- `Decoration` is a child of `Sprite`. -require "not.Sprite" -Decoration.__index = Decoration -setmetatable(Decoration, Sprite) +Decoration.x = 0 +Decoration.y = 0 -- Constructor of `Decoration`. -function Decoration:new (x, y, imagePath) - local o = setmetatable({}, self) - o:init(x, y, imagePath) - return o -end - --- Initializer of `Decoration`. -function Decoration:init (x, y, imagePath) - Sprite.init(self, imagePath) +function Decoration:new (x, y, world, imagePath) + Decoration.__super.new(self, world, imagePath) self:setPosition(x, y) end @@ -30,4 +19,6 @@ function Decoration:getPosition () end function Decoration:setPosition (x, y) self.x, self.y = x, y -end
\ No newline at end of file +end + +return Decoration |