Files
Techmino/parts/scenes/quit.lua
2021-08-25 04:28:52 +08:00

12 lines
247 B
Lua

local scene={}
function scene.sceneInit()
if math.random()>.0000626 then
love.timer.sleep(.26)
love.event.quit()
else
error("So lucky! 0.00626% to get this!! You can quit the game now.")
end
end
return scene