Files
tbd-station-14/Content.Shared/Salvage/Magnet/AsteroidOffering.cs
Nemanja 3cdd62b0dd Mining Rebalance (#30920)
* first pass

* this shit too

* ok fix that shit

* buff

* actually fix that
2024-08-16 11:43:54 +10:00

19 lines
410 B
C#

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