OSMServer/Pathfinding/PathNode.cs

9 lines
157 B
C#
Raw Normal View History

2023-02-03 23:36:43 +01:00
namespace Pathfinding;
public class PathNode : OSMDatastructure.Node
{
public PathNode(float lat, float lon) : base(lat, lon)
{
}
}