Files
Techmino/parts/scenes/quit.lua
2020-12-14 23:26:26 +08:00

12 lines
226 B
Lua

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