Files
match3-unity/Assets/Scripts/Services/Interfaces/IInputService.cs

9 lines
198 B
C#

using System;
using UnityEngine;
namespace Services.Interfaces {
public interface IInputService {
event Action<Vector2> OnPointerDown;
event Action<Vector2> OnPointerUp;
}
}