Files
match3-unity/Assets/Scripts/Services/Interfaces/IInputService.cs
2025-12-15 02:34:59 +08:00

8 lines
172 B
C#

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