18 lines
300 B
C#
18 lines
300 B
C#
|
using UnityEngine.InputSystem;
|
|||
|
|
|||
|
namespace Player.Movement
|
|||
|
{
|
|||
|
public partial class PlayerMovementController
|
|||
|
{
|
|||
|
private void CrouchStart(InputAction.CallbackContext obj)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
private void CrouchEnd(InputAction.CallbackContext obj)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|