mirror of
https://gitea.com/SweetSea-ButImNotSweet/tromi_mobile.git
synced 2025-01-08 17:33:09 +08:00
13 lines
164 B
Lua
13 lines
164 B
Lua
local ExitScene = SCENE:extend()
|
|
ExitScene.title = "Exit Game"
|
|
|
|
function ExitScene:new()
|
|
end
|
|
|
|
function ExitScene:update()
|
|
love.event.quit()
|
|
end
|
|
|
|
return ExitScene
|
|
|