Pointer index concerned by this action

Require: is_pointer_down or is_pointer_up

Property definitions

android $ AMotionEventAction :: pointer_index
	# Pointer index concerned by this action
	#
	# Require: `is_pointer_down or is_pointer_up`
	fun pointer_index: Int `{
		return (self & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
	`}
lib/android/input_events.nit:80,2--85,3