UnityBiz/Assets/scripts/Movement/PlayerMovementController.Crouch.cs

18 lines
300 B
C#
Raw Normal View History

2024-08-02 04:41:41 +00:00
using UnityEngine.InputSystem;
namespace Player.Movement
{
public partial class PlayerMovementController
{
private void CrouchStart(InputAction.CallbackContext obj)
{
}
private void CrouchEnd(InputAction.CallbackContext obj)
{
}
}
}