using System.Collections.Generic; using UnityEngine; namespace GeometryTD.Pathfinding { public interface IMapPathfinder { bool TryFindPath( IReadOnlyCollection walkableCells, Vector3Int startCell, Vector3Int destinationCell, IReadOnlyCollection blockedCells, List pathResult); } }