using System; using UnityEngine; public interface IInputReader { event Action OnDragValueChanged; bool isMouseButtonPressed { get; } bool isDragging { get; } Vector2 dragInput { get; } void LockInput(); void UnlockInput(); }