sokoban.love/0109-overflow_button

8 lines
195 B
Plaintext

overflow_button = function(x, y)
styled_button('>>', x,y,
function()
Show_overflow = not Show_overflow
if Show_overflow then Show_settings = false end
end)
return x, y+Line_height
end