2025-07-09 20:06:51 -07:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
2023-06-28 14:01:27 +00:00
|
|
|
namespace Content.Shared.Salvage.Expeditions.Modifiers;
|
|
|
|
|
|
|
|
|
|
public interface IBiomeSpecificMod : ISalvageMod
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whitelist for biomes. If null then any biome is allowed.
|
|
|
|
|
/// </summary>
|
2025-07-09 20:06:51 -07:00
|
|
|
List<ProtoId<SalvageBiomeModPrototype>>? Biomes { get; }
|
2023-06-28 14:01:27 +00:00
|
|
|
}
|