12 lines
189 B
C#
12 lines
189 B
C#
namespace astar
|
|
{
|
|
public struct Edge
|
|
{
|
|
public Node neighbor { get; }
|
|
public Edge(Node neighbor)
|
|
{
|
|
this.neighbor = neighbor;
|
|
}
|
|
}
|
|
}
|