Files
HelixJump/Assets/Scripts/Input/IInputReader.cs
2025-12-15 17:49:08 -08:00

14 lines
232 B
C#

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