using System; using UnityEngine; namespace Services.Interfaces { public interface IInputService { event Action OnPointerDown; event Action OnPointerUp; } }