// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Platform { using Perspex.Controls; public interface IWindowImpl : ITopLevelImpl { void SetTitle(string title); void Show(); void Hide(); } }