Files
Techmino/parts/scenes/quit.lua
2020-12-14 18:53:43 +08:00

8 lines
194 B
Lua

function sceneInit.quit()
if math.random()>.000626 then
love.timer.sleep(.3)
love.event.quit()
else
error("So lucky! 0.0626 precent to get this!!! You can quit the game now.")
end
end