17 lines
352 B
C#
17 lines
352 B
C#
using OSMDatastructure;
|
|
|
|
namespace Pathfinding;
|
|
|
|
public class PathNode : OSMDatastructure.Node
|
|
{
|
|
public PathNode? previousPathNode = null;
|
|
public double currentPathWeight = double.MaxValue;
|
|
public double DirectDistanceToGoal = double.MaxValue;
|
|
|
|
|
|
public PathNode(float lat, float lon) : base(lat, lon)
|
|
{
|
|
|
|
}
|
|
|
|
} |