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

11 lines
270 B
C#

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