// ----------------------------------------------------------------------- // // Copyright 2013 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Input { using System; using Perspex.Input.Raw; using Perspex.Layout; public interface IInputManager { IObservable RawEventReceived { get; } IObservable PostProcess { get; } void Process(RawInputEventArgs e); } }