예제 #1
0
 public Path CalculatePath(Vector3Int startCell, Vector3Int finCell)
 {
     currentSearch = new PathSearch(startCell, finCell, this);
     return(currentSearch.FindPath());
 }