OreDunGenPrototype.cs 237 B

12345678910
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Shared.Procedural.DungeonLayers;
  3. [Prototype]
  4. public sealed partial class OreDunGenPrototype : OreDunGen, IPrototype
  5. {
  6. [IdDataField]
  7. public string ID { set; get; } = default!;
  8. }