// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Input { using System; public interface IPointerDevice : IInputDevice { Interactive Captured { get; } void Capture(Interactive visual); Point GetPosition(IVisual relativeTo); } }