// Assets/Scripts/Services/Interfaces/IBombService.cs using System; using System.Collections.Generic; using Cysharp.Threading.Tasks; using Models.Interfaces; using Structs; using UnityEngine; namespace Services.Interfaces { public interface IBombService { public BombSpawnRequest? PendingBombSpawn { get; } void SetLastSwap(Vector2Int from, Vector2Int to); void ClearPendingBombs(); void DetectBombSpawnFromLastSwap(List currentMatches); UniTask DetonateChainAsync( IReadOnlyList initialBombs, Func destroyAtAsync, IGameBoard gameBoard); } }