Initial commit
This commit is contained in:
11
Assets/Scripts/Input/IInputReader.cs
Normal file
11
Assets/Scripts/Input/IInputReader.cs
Normal 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; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user