10 lines
225 B
C#
10 lines
225 B
C#
using Cysharp.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
namespace Services.Interfaces {
|
|
public interface IGameBoardService {
|
|
void Setup();
|
|
|
|
UniTask<bool> TrySwap(Vector2Int from, Vector2Int to);
|
|
}
|
|
} |