* Revert "Fix world generation (#38713)" This reverts commit10fa6ff4af. * Revert "Biome rework (#37735)" This reverts commitfe7b96147c.
14 lines
449 B
C#
14 lines
449 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Procedural.DungeonGenerators;
|
|
|
|
/// <summary>
|
|
/// Generates the specified config on an exterior tile of the attached dungeon.
|
|
/// Useful if you're using <see cref="GroupDunGen"/> or otherwise want a dungeon on the outside of a grid.
|
|
/// </summary>
|
|
public sealed partial class ExteriorDunGen : IDunGenLayer
|
|
{
|
|
[DataField(required: true)]
|
|
public ProtoId<DungeonConfigPrototype> Proto;
|
|
}
|