summaryrefslogtreecommitdiff
path: root/sprite/sprite.lua
blob: 1b8c8cff7c0bd1a2b213a4bf330c73c70d7c6780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local Sprite = {
	x = 0, 
	y = 0,
}
Sprite.__index = Sprite

function Sprite:update(dt)
	
end

function Sprite.draw(sp)
	-- camera
end

return Sprite