Property definitions

mnit $ MotionEvent :: defaultinit
# A motion event on screen composed of many `PointerEvent`
#
# Example of a `MotionEvent` a gesture such as pinching using two fingers.
interface MotionEvent
	super InputEvent

	# A pointer just went down?
	fun just_went_down: Bool is abstract

	# Which pointer is down, if any
	fun down_pointer: nullable PointerEvent is abstract
end
lib/mnit/input.nit:52,1--63,3