2023-09-04 18:20:02 +00:00
|
|
|
local lg = assert( love.graphics )
|
2023-09-04 18:31:47 +00:00
|
|
|
local scene = assert( require 'client.scene' )
|
2023-09-04 18:20:02 +00:00
|
|
|
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
|
|
|
|
|
2023-09-04 18:31:47 +00:00
|
|
|
return scene.add( browser, 'browser' )
|