* add space debris to salvage magnet * multiplication * necessary mercy for NPCs * back and forth on mercy
10 lines
198 B
C#
10 lines
198 B
C#
namespace Content.Shared.Salvage.Magnet;
|
|
|
|
/// <summary>
|
|
/// Space debis offered for the magnet.
|
|
/// </summary>
|
|
public record struct DebrisOffering : ISalvageMagnetOffering
|
|
{
|
|
public string Id;
|
|
}
|