* Revert "Fix world generation (#38713)" This reverts commit10fa6ff4af. * Revert "Biome rework (#37735)" This reverts commitfe7b96147c.
25 lines
603 B
C#
25 lines
603 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 the specified entities at junction areas.
|
|
/// </summary>
|
|
public sealed partial class JunctionDunGen : IDunGenLayer
|
|
{
|
|
/// <summary>
|
|
/// Width to check for junctions.
|
|
/// </summary>
|
|
[DataField]
|
|
public int Width = 3;
|
|
|
|
[DataField(required: true)]
|
|
public ProtoId<ContentTileDefinition> Tile;
|
|
|
|
[DataField(required: true)]
|
|
public ProtoId<EntityTablePrototype> Contents;
|
|
}
|