private void SetH(Vector2D end) { H = Astar.Heuristic(end, Position); }
private void SetG(Vector2D start) { G = Astar.Heuristic(start, Position); }