using UnityEngine; namespace Aliciza.Services.Example { public interface IInputService : IService { Vector2 Move { get; } bool ConfirmPressedThisFrame { get; } bool ToggleBattlePressedThisFrame { get; } } }