summaryrefslogtreecommitdiffhomepage
path: root/not/Entity.lua
blob: 0e21e48d0121ec7fba71f347cdd9b4f0e4309cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "not.Sprite"

--- `Entity`
-- Basic, visible object to be used within World instance. Can be anything. Represented as `Sprite`.
-- We still need to keep old, global way of using modules but there are `returns` on the end at least.
-- It probably would be nice to move `World` dependency out of it but for now it should stay this way. Later `World` instance could be just passed to methods that need it.
Entity = Sprite:extends()

Entity.world =--[[not.World]]nil

-- Simple constructor for `Entity`.
function Entity:new (world, imagePath)
	Entity.__super.new(self, imagePath)
	self.world = world
end

return Entity