mirror of
https://github.com/jie65535/ChineseChess.git
synced 2024-07-27 18:55:00 +08:00
14 lines
221 B
C#
14 lines
221 B
C#
using System.Windows.Controls;
|
|
|
|
namespace ChineseChess.GUI.Contracts.Views
|
|
{
|
|
public interface IShellWindow
|
|
{
|
|
Frame GetNavigationFrame();
|
|
|
|
void ShowWindow();
|
|
|
|
void CloseWindow();
|
|
}
|
|
}
|