-- main require 'scene' function love.load() scene:load() end function love.draw() scene:draw() end function love.update(dt) if love.keyboard.isDown('escape') then love.event.quit() end if not scene.paused then scene:update(dt) end end function love.quit() print('Thanks for playing!') scene:quit() end