public FinishedArgs(Gesture sender, bool interrupted, Vector2 start, Vector2 position) : base(sender) { this.start = start; this.position = position; this.interrupted = interrupted; }
public FlingArgs(Gesture sender, State state, Vector2 start, Vector2 position) : base(sender) { this.start = start; this.position = position; this.state = state; }
public PanArgs(Gesture sender, State state, Vector2 start, Vector2 position, Vector2 delta) : base(sender) { this.state = state; this.start = start; this.position = position; this.delta = delta; }
public TapArgs(Gesture sender, Vector2 position) : base(sender) { this.position = position; }
public TouchArg(Gesture sender) { handled = true; this.sender = sender; }
public LongPressArgs(Gesture sender, State state, Vector2 position) : base(sender) { this.state = state; this.position = position; }