vision/src/client/browser.lua

18 lines
307 B
Lua
Raw Normal View History

2023-09-04 18:20:02 +00:00
local client = assert( client )
local lg = assert( love.graphics )
local browser = {}
function browser.draw()
lg.rectangle( "fill", 50, 50, 50, 50 )
end
function browser.update( dt )
end
function browser.onLoad( )
lg.setColor( 1, 1, 1, 1 )
end
client.addScene( browser, "browser" )
return browser