Initial commit

This commit is contained in:
Mausham
2025-12-14 18:16:49 +05:45
commit 94e8eba3b1
236 changed files with 84425 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System;
using UnityEngine;
public interface IInputReader
{
event Action<Vector2> OnDragValueChanged;
bool isMouseButtonPressed { get; }
bool blockedInput { get; set; }
Vector2 dragInput { get; }
}