Which Actor is at the center of the screen?

Property definitions

gamnit :: selection $ App :: visible_in_center
	# Which `Actor` is at the center of the screen?
	fun visible_in_center: nullable Actor
	do
		var display = display
		assert display != null
		return visible_at(display.width/2, display.height/2)
	end
lib/gamnit/depth/selection.nit:40,2--46,4