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

12 lines
251 B
C#

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