Exemple #1
0
 public List <GridPos> PathSearch(GridPos cell1, GridPos cell2)
 {
     return(BestFirstSearch.findPath(cell1, cell2, Grid));
 }