Files
brick-framework/GameCore/Input/Interfaces/IInputService.cs

12 lines
286 B
C#

using GameCore.Math;
namespace GameCore.Input.Interfaces;
public interface IInputService
{
public bool IsFiring { get; }
public bool IsInteracting { get; }
public bool IsJumping { get; }
public Vector3 MoveDirection { get; }
public Vector3 LookDirection { get; }
}