local lg = assert( love.graphics ) local scene = assert( require 'client.scene' ) 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 function browser.mousepressed() end function browser.keypressed( key, code, isRepeat ) if code == "escape" then return scene.mainmenu() end end scene.browser = browser return browser