Exemplo n.º 1
0
 private void SetH(Vector2D end)
 {
     H = Astar.Heuristic(end, Position);
 }
Exemplo n.º 2
0
 private void SetG(Vector2D start)
 {
     G = Astar.Heuristic(start, Position);
 }