namespace Core.Input { /// /// Information about a pinch gesture /// public struct PinchInfo { /// /// The first touch involved in the pinch /// public TouchInfo touch1; /// /// The second touch involved in the pinch /// public TouchInfo touch2; } }