Ejemplo n.º 1
0
 public static void PerformSearch(AStarTile startingPoint, AStarTile endingPoint)
 {
     //Assemble the tile representation of the wordl
     ms_instance.StartCoroutine(ms_instance.PerformAStarSearchCoroutine(
                                    startingPoint,
                                    endingPoint));
 }