Reworked to Pathnode

This commit is contained in:
C9Glax 2023-02-03 23:36:43 +01:00
parent f7d9e511d7
commit 1e3979ede4
2 changed files with 9 additions and 12 deletions

View File

@ -1,12 +0,0 @@
namespace Pathfinding;
public class Graph
{
public class Node : OSMDatastructure.Node
{
public Node(float lat, float lon) : base(lat, lon)
{
}
}
}

9
Pathfinding/PathNode.cs Normal file
View File

@ -0,0 +1,9 @@
namespace Pathfinding;
public class PathNode : OSMDatastructure.Node
{
public PathNode(float lat, float lon) : base(lat, lon)
{
}
}