BiomeTemplatePrototype.cs 452 B

12345678910111213141516
  1. using Content.Shared.Parallax.Biomes.Layers;
  2. using Robust.Shared.Prototypes;
  3. namespace Content.Shared.Parallax.Biomes;
  4. /// <summary>
  5. /// A preset group of biome layers to be used for a <see cref="BiomeComponent"/>
  6. /// </summary>
  7. [Prototype]
  8. public sealed partial class BiomeTemplatePrototype : IPrototype
  9. {
  10. [IdDataField] public string ID { get; private set; } = default!;
  11. [DataField("layers")]
  12. public List<IBiomeLayer> Layers = new();
  13. }