2023-06-27 19:17:42 +10:00
|
|
|
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>
|
2024-07-03 22:23:11 +10:00
|
|
|
public sealed partial class CorridorDecalSkirtingDunGen : IDunGenLayer
|
2023-06-27 19:17:42 +10:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Decal where 1 edge is found.
|
|
|
|
|
/// </summary>
|
2024-07-03 22:23:11 +10:00
|
|
|
[DataField]
|
2023-06-27 19:17:42 +10:00
|
|
|
public Dictionary<DirectionFlag, string> CardinalDecals = new();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Decal where 1 corner edge is found.
|
|
|
|
|
/// </summary>
|
2024-07-03 22:23:11 +10:00
|
|
|
[DataField]
|
2023-06-27 19:17:42 +10:00
|
|
|
public Dictionary<Direction, string> PocketDecals = new();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Decal where 2 or 3 edges are found.
|
|
|
|
|
/// </summary>
|
2024-07-03 22:23:11 +10:00
|
|
|
[DataField]
|
2023-06-27 19:17:42 +10:00
|
|
|
public Dictionary<DirectionFlag, string> CornerDecals = new();
|
|
|
|
|
}
|