12 lines
300 B
C#
12 lines
300 B
C#
|
namespace Thousandto.Core.Base
|
|||
|
{
|
|||
|
public interface IInputSystem
|
|||
|
{
|
|||
|
//设置UI检测对象
|
|||
|
void SetUIChecker(IUIChecker checker);
|
|||
|
|
|||
|
//设置手势的事件处理器
|
|||
|
void SetFingerGesturesEventTrigger(IFingerGesturesEvent e, bool isBindHandler = false);
|
|||
|
}
|
|||
|
}
|