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

12 lines
359 B
C#

using System.Collections.Generic;
using UnityEngine;
using Enums;
namespace Services.Interfaces {
public interface IMatchService {
List<Gem> CurrentMatches { get; }
bool MatchesAt(Vector2Int positionToCheck, GemType gemTypeToCheck);
void FindAllMatches();
void MarkBombArea(Vector2Int bombPosition, int blastSize);
}
}