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