Files
HelixJump/Assets/Scripts/GameInput/IInputReader.cs
2025-12-11 18:20:42 -08:00

9 lines
138 B
C#

using UnityEngine;
public interface IInputReader
{
Vector2 dragInput{get;}
float clickInput { get;}
bool isclicked { get;}
}