21 lines
510 B
C#
21 lines
510 B
C#
// 文件位置: Assets/Scripts/TH1_UI/Controller/Base/IEscClosable.cs
|
|
|
|
namespace TH1_UI.Controller.Base
|
|
{
|
|
/// <summary>
|
|
/// 标识UI是否可以通过Esc/右键关闭的接口
|
|
/// </summary>
|
|
public interface IEscClosable
|
|
{
|
|
/// <summary>
|
|
/// 是否可以通过Esc/右键关闭
|
|
/// </summary>
|
|
bool CanCloseByEsc();
|
|
|
|
/// <summary>
|
|
/// 关闭后需取消地图高亮
|
|
/// </summary>
|
|
void CancelMapHighlightsOrDoNothing();
|
|
}
|
|
}
|