using System; using UnityEngine; namespace Services.Interfaces { public interface IInputService { event Action OnSwapRequested; event Action OnSwitchRequested; } }