Example #1
0
 public bool Equals(EventTouch other)
 {
     return(true && Type.Equals(other.Type) && Window.Equals(other.Window) && SendEvent.Equals(other.SendEvent) && Time.Equals(other.Time) && X.Equals(other.X) && Y.Equals(other.Y) && _axes.Equals(other._axes) && State.Equals(other.State) && Sequence.Equals(other.Sequence) && EmulatingPointer.Equals(other.EmulatingPointer) && Device.Equals(other.Device) && XRoot.Equals(other.XRoot) && YRoot.Equals(other.YRoot));
 }