Files
project-entity/Assets/_Project/Develop/Runtime/Utilities/InputManagement/Inputs/IPlayerInput.cs
2026-02-22 16:34:02 +05:00

18 lines
530 B
C#

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