Ejemplo n.º 1
0
 public PathFindingNode(int id,float cost,float ecost)
 {
     ID = id;
     costSoFar = cost;
     estimatedTotalCost = ecost;
     connection = null;
 }
Ejemplo n.º 2
0
 public PathFindingNode(int id)
 {
     ID = id;
     connection = null;
     costSoFar = 0;
     estimatedTotalCost = 0;
 }