Files
Main/Assets/Plugins/References/FuncellBase/Interface/ICheckHitUI.cs

16 lines
392 B
C#
Raw Normal View History

2025-01-25 04:38:09 +08:00
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();
}
}