* Revert "Fix world generation (#38713)" This reverts commit10fa6ff4af. * Revert "Biome rework (#37735)" This reverts commitfe7b96147c.
13 lines
282 B
C#
13 lines
282 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
/// <summary>
|
|
/// Runs cables throughout the dungeon.
|
|
/// </summary>
|
|
public sealed partial class AutoCablingDunGen : IDunGenLayer
|
|
{
|
|
[DataField(required: true)]
|
|
public EntProtoId Entity;
|
|
}
|