using System.Collections.Generic; namespace DunGen { public sealed class DungeonGraphNode : DungeonGraphObject { public List Connections = new List(); public Tile Tile { get; private set; } public DungeonGraphNode(Tile tile) { Tile = tile; } internal void AddConnection(DungeonGraphConnection connection) { Connections.Add(connection); } } }