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