AStar/astar/Edge.cs

12 lines
189 B
C#
Raw Normal View History

2022-05-05 15:49:28 +02:00
namespace astar
{
public struct Edge
{
public Node neighbor { get; }
public Edge(Node neighbor)
{
this.neighbor = neighbor;
}
}
}