summaryrefslogtreecommitdiff
path: root/objects/test.lua
blob: d8c1a6526adb523d44501b0c83b22e9a671f2973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local test = {radius = 4}

function test:draw()
	line(-4, 4, 0, -4, 4, 4, -4, 4)
	set_color(4, 0.6, 0.7)
	line(4, -4, 0, 4, -4, -4, 4, -4)
end

function test:init()
end

function test:tick()
end

return {test = test}