Client for playing 300 publicly available Sokoban puzzles on a computer or phone.
on_editor_scrollbar_area = function(state, x,y)
	if x < state.right+15 then return end
	if x > state.right+45 then return end
	if y < state.top then return end
	if y > state.bottom then return end
	return true
end