Exemple #1
0
 public ArterialPathfinding(Grid <PathNode> grid)
 {
     Instance  = this;
     this.grid = grid;
 }
Exemple #2
0
 public ArterialPathfinding()
 {
     Instance = this;
     nodeDict = new Dictionary <Vector2, PathNode>();
 }