scratchpad for the client's rendering

This commit is contained in:
wan-may 2023-12-04 22:05:23 -04:00
parent bf12de9373
commit 3c0cf3013e
1 changed files with 9 additions and 0 deletions

9
src/renderer/main.lua Normal file
View File

@ -0,0 +1,9 @@
local time = 0
function love.update(dt)
time = time + dt
end
function love.draw()
love.graphics.print( time )
end