mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 22:31:10 +00:00
17 lines
488 B
C#
17 lines
488 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> Jump { get; }
|
|
InputState<float> Sprint { get; }
|
|
InputState<float> Interact { get; }
|
|
InputState<float> Crouch { get; }
|
|
InputState<float> Previous { get; }
|
|
InputState<float> Next { get; }
|
|
}
|
|
} |