diff --git a/Pathfinding/Graph.cs b/Pathfinding/Graph.cs deleted file mode 100644 index f8a3901..0000000 --- a/Pathfinding/Graph.cs +++ /dev/null @@ -1,12 +0,0 @@ -namespace Pathfinding; - -public class Graph -{ - public class Node : OSMDatastructure.Node - { - public Node(float lat, float lon) : base(lat, lon) - { - - } - } -} \ No newline at end of file diff --git a/Pathfinding/PathNode.cs b/Pathfinding/PathNode.cs new file mode 100644 index 0000000..483224f --- /dev/null +++ b/Pathfinding/PathNode.cs @@ -0,0 +1,9 @@ +namespace Pathfinding; + +public class PathNode : OSMDatastructure.Node +{ + public PathNode(float lat, float lon) : base(lat, lon) + { + + } +} \ No newline at end of file