OSMServer/Pathfinding/PathNode.cs
2023-02-03 23:36:43 +01:00

9 lines
157 B
C#

namespace Pathfinding;
public class PathNode : OSMDatastructure.Node
{
public PathNode(float lat, float lon) : base(lat, lon)
{
}
}