PathNode.cs 246 B

12345678
  1. namespace Day23;
  2. public class PathNode
  3. {
  4. public List<Tile> Tiles { get; } = new List<Tile>();
  5. public List<PathNode> Outgoing { get; } = new List<PathNode>();
  6. public List<PathNode> Incoming { get; } = new List<PathNode>();
  7. }