11 lines
172 B
C#
11 lines
172 B
C#
using UnityEngine;
|
|
|
|
public interface IInputReader
|
|
{
|
|
Vector2 dragInput{get;}
|
|
float clickInput { get;}
|
|
bool isclicked { get;}
|
|
|
|
bool isBlocked { get; set; }
|
|
}
|