using System; using UnityEngine; public interface IInputReader { event Action OnDragValueChanged; bool isMouseButtonPressed { get; } bool blockedInput { get; set; } Vector2 dragInput { get; } }