// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Input { using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; public interface IFocusManager { IInputElement Current { get; } void Focus(IInputElement focusable); } }