IBiomeSpecificMod.cs 246 B

123456789
  1. namespace Content.Shared.Salvage.Expeditions.Modifiers;
  2. public interface IBiomeSpecificMod : ISalvageMod
  3. {
  4. /// <summary>
  5. /// Whitelist for biomes. If null then any biome is allowed.
  6. /// </summary>
  7. List<string>? Biomes { get; }
  8. }