scratchpad for the client's rendering
This commit is contained in:
parent
bf12de9373
commit
3c0cf3013e
|
@ -0,0 +1,9 @@
|
||||||
|
local time = 0
|
||||||
|
|
||||||
|
function love.update(dt)
|
||||||
|
time = time + dt
|
||||||
|
end
|
||||||
|
|
||||||
|
function love.draw()
|
||||||
|
love.graphics.print( time )
|
||||||
|
end
|
Loading…
Reference in New Issue