9 lines
157 B
C#
9 lines
157 B
C#
|
namespace Pathfinding;
|
||
|
|
||
|
public class PathNode : OSMDatastructure.Node
|
||
|
{
|
||
|
public PathNode(float lat, float lon) : base(lat, lon)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|