using System; using UnityEngine; namespace _Project.Develop.Runtime.Utils.InputManagement { public interface IPlayerInput : IInput { InputState Move { get; } InputState Look { get; } InputState Jump { get; } InputState Sprint { get; } InputState Interact { get; } InputState Crouch { get; } InputState Previous { get; } InputState Next { get; } } }