Files
match3-unity/Assets/Scripts/Services/Interfaces/IMatchService.cs

12 lines
307 B
C#

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