2025-05-18 03:10:30 +10:00
|
|
|
using Content.Shared.EntityTable;
|
|
|
|
|
using Content.Shared.Maps;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
2024-07-03 22:23:11 +10:00
|
|
|
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Spawns entities on either side of an entrance.
|
|
|
|
|
/// </summary>
|
2025-05-18 03:10:30 +10:00
|
|
|
public sealed partial class EntranceFlankDunGen : IDunGenLayer
|
|
|
|
|
{
|
|
|
|
|
[DataField(required: true)]
|
|
|
|
|
public ProtoId<ContentTileDefinition> Tile;
|
|
|
|
|
|
|
|
|
|
[DataField(required: true)]
|
|
|
|
|
public ProtoId<EntityTablePrototype> Contents = new();
|
|
|
|
|
}
|