Delta-v/Content.Shared/Salvage/Magnet/AsteroidOffering.cs

17 lines
396 B
C#

using Content.Shared.Procedural;
namespace Content.Shared.Salvage.Magnet;
/// <summary>
/// Asteroid offered for the magnet.
/// </summary>
public record struct AsteroidOffering : ISalvageMagnetOffering
{
public DungeonConfigPrototype DungeonConfig;
/// <summary>
/// Calculated marker layers for the asteroid.
/// </summary>
public Dictionary<string, int> MarkerLayers;
}