* Revert "Fix world generation (#38713)" This reverts commit10fa6ff4af. * Revert "Biome rework (#37735)" This reverts commitfe7b96147c.
16 lines
547 B
C#
16 lines
547 B
C#
using Content.Shared.Parallax.Biomes.Markers;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary;
|
|
|
|
namespace Content.Shared.Procedural.Loot;
|
|
|
|
/// <summary>
|
|
/// Adds a biome marker layer for dungeon loot.
|
|
/// </summary>
|
|
public sealed partial class BiomeMarkerLoot : IDungeonLoot
|
|
{
|
|
[DataField("proto", required: true)]
|
|
public ProtoId<BiomeMarkerLayerPrototype> Prototype = new();
|
|
}
|