namespace Content.Shared.Procedural; /// /// Connects 2 dungeon rooms. /// public sealed record DungeonPath(string Tile, string Wall, HashSet Tiles) { public string Tile = Tile; public string Wall = Wall; }