inz-00/Assets/Map/Graph.cs
2019-07-27 22:40:42 +02:00

10 lines
260 B
C#

using System.Collections.Generic;
namespace Assets.Map
{
public class Graph<T>
{
public IList<T> Vertices { get; internal set; } = new List<T>();
public ISet<(int, int)> Edges { get; internal set; } = new HashSet<(int, int)>();
}
}