using Content.Shared.Parallax.Biomes.Layers;
using Robust.Shared.Prototypes;
namespace Content.Shared.Parallax.Biomes;
///
/// A preset group of biome layers to be used for a
///
[Prototype]
public sealed partial class BiomeTemplatePrototype : IPrototype
{
[IdDataField] public string ID { get; private set; } = default!;
[DataField("layers")]
public List Layers = new();
}