12 lines
286 B
C#
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; }
|
|
} |