Reworked to Pathnode
This commit is contained in:
parent
f7d9e511d7
commit
1e3979ede4
@ -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
9
Pathfinding/PathNode.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace Pathfinding;
|
||||
|
||||
public class PathNode : OSMDatastructure.Node
|
||||
{
|
||||
public PathNode(float lat, float lon) : base(lat, lon)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user