feat(): 大量更新
This commit is contained in:
16
Assets/Script/Core/Interface/IInputManager.cs
Normal file
16
Assets/Script/Core/Interface/IInputManager.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Core
|
||||
{
|
||||
public interface IInputManager
|
||||
{
|
||||
public Vector2 Move { get; }
|
||||
public Vector2 Look { get; }
|
||||
public bool JumpPressed { get; }
|
||||
public bool PausePressed { get; }
|
||||
public bool InteractPressed { get; }
|
||||
public void SetCursorState(bool visible, CursorLockMode lockMode);
|
||||
public void SetInputForLook(bool enabled);
|
||||
public void SetInputForMove(bool enabled);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user