ChineseChess/ChineseChess.GUI/Contracts/Views/IShellWindow.cs
2021-05-30 22:57:53 +08:00

14 lines
221 B
C#

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