using System.Windows.Controls; namespace ChineseChess.GUI.Contracts.Views { public interface IShellWindow { Frame GetNavigationFrame(); void ShowWindow(); void CloseWindow(); } }