Create All Needed Scripts
This commit is contained in:
9
Assets/Scripts/Services/Interfaces/IInputService.cs
Normal file
9
Assets/Scripts/Services/Interfaces/IInputService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Services.Interfaces {
|
||||
public interface IInputService {
|
||||
event Action<Vector2> OnPointerDown;
|
||||
event Action<Vector2> OnPointerUp;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user