| 1234567891011121314151617181920212223242526272829 |
- using Content.Shared.Decals;
- using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
- using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary;
- namespace Content.Shared.Procedural.PostGeneration;
- /// <summary>
- /// Applies decal skirting to corridors.
- /// </summary>
- public sealed partial class CorridorDecalSkirtingDunGen : IDunGenLayer
- {
- /// <summary>
- /// Decal where 1 edge is found.
- /// </summary>
- [DataField]
- public Dictionary<DirectionFlag, string> CardinalDecals = new();
- /// <summary>
- /// Decal where 1 corner edge is found.
- /// </summary>
- [DataField]
- public Dictionary<Direction, string> PocketDecals = new();
- /// <summary>
- /// Decal where 2 or 3 edges are found.
- /// </summary>
- [DataField]
- public Dictionary<DirectionFlag, string> CornerDecals = new();
- }
|