2025-01-25 04:38:09 +08:00

16 lines
392 B
C#

namespace Thousandto.Core.Base
{
//UI的一些检测接口
public interface IUIChecker
{
//是否在进行摇杆控制
bool IsControled { get; }
//是否点击UI
bool IsHitUI(int touchID);
//是否点击UI
bool IsHitUI(int touchID, string uiname);
//是否焦点在输入框上
bool IsSelectInputField();
}
}