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

9 lines
224 B
C#

using System;
using UnityEngine;
namespace Services.Interfaces {
public interface IInputService {
event Action<Vector2Int, Vector2Int> OnSwapRequested;
event Action<Vector2Int> OnSwitchRequested;
}
}