Files
match3-unity/Assets/Scripts/Services/Interfaces/IGameBoardService.cs
2025-12-17 00:55:30 +08:00

10 lines
225 B
C#

using Cysharp.Threading.Tasks;
using UnityEngine;
namespace Services.Interfaces {
public interface IGameBoardService {
void Setup();
UniTask<bool> TrySwap(Vector2Int from, Vector2Int to);
}
}