* Revert "Fix world generation (#38713)" This reverts commit10fa6ff4af. * Revert "Biome rework (#37735)" This reverts commitfe7b96147c.
19 lines
469 B
C#
19 lines
469 B
C#
using Content.Shared.EntityTable;
|
|
using Content.Shared.Maps;
|
|
using Content.Shared.Storage;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
/// <summary>
|
|
/// Places tiles / entities onto room entrances.
|
|
/// </summary>
|
|
public sealed partial class RoomEntranceDunGen : IDunGenLayer
|
|
{
|
|
[DataField(required: true)]
|
|
public ProtoId<ContentTileDefinition> Tile;
|
|
|
|
[DataField]
|
|
public ProtoId<EntityTablePrototype> Contents;
|
|
}
|