// ----------------------------------------------------------------------- // // Copyright 2013 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Input.Raw { using System; using Perspex.Layout; public class RawMouseWheelEventArgs : RawMouseEventArgs { public RawMouseWheelEventArgs( IInputDevice device, uint timestamp, IInputElement root, Point position, Vector delta) : base(device, timestamp, root, RawMouseEventType.Wheel, position) { this.Delta = delta; } public Vector Delta { get; private set; } } }