sokoban.love/0106-stop_button

10 lines
170 B
Plaintext

stop_button = function(x, y)
styled_button('stop', x,y,
function()
Show_menu = nil
clear_handlers()
end)
local w = App.width('stop')+10
return x+w+10, y
end