2020-10-07 22:56:46 -05:00
|
|
|
local ExitScene = Scene:extend()
|
|
|
|
require 'load.save'
|
|
|
|
|
|
|
|
ExitScene.title = "Exit Game"
|
|
|
|
|
|
|
|
function ExitScene:new()
|
|
|
|
end
|
|
|
|
|
|
|
|
function ExitScene:update()
|
2020-11-06 19:49:44 -06:00
|
|
|
love.event.quit()
|
2020-10-07 22:56:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
function ExitScene:render()
|
|
|
|
end
|
|
|
|
|
|
|
|
function ExitScene:changeOption(rel)
|
|
|
|
end
|
|
|
|
|
2020-11-08 14:55:06 -06:00
|
|
|
function ExitScene:onInputPress(e)
|
2020-10-07 22:56:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
return ExitScene
|
|
|
|
|