namespace Content.Shared.Procedural.PostGeneration; /// /// Applies decal skirting to corridors. /// public sealed partial class CorridorDecalSkirtingDunGen : IDunGenLayer { /// /// Decal where 1 edge is found. /// [DataField] public Dictionary CardinalDecals = new(); /// /// Decal where 1 corner edge is found. /// [DataField] public Dictionary PocketDecals = new(); /// /// Decal where 2 or 3 edges are found. /// [DataField] public Dictionary CornerDecals = new(); /// /// Optional color to apply to the decals. /// [DataField] public Color? Color; }