using Content.Shared.EntityTable; using Content.Shared.Maps; using Content.Shared.Storage; using Robust.Shared.Prototypes; namespace Content.Shared.Procedural.PostGeneration; /// /// Places the specified entities at junction areas. /// public sealed partial class JunctionDunGen : IDunGenLayer { /// /// Width to check for junctions. /// [DataField] public int Width = 3; [DataField(required: true)] public ProtoId Tile; [DataField(required: true)] public ProtoId Contents; }