Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
15 lines
360 B
C#
15 lines
360 B
C#
namespace Content.Server.Salvage
|
|
{
|
|
/// <summary>
|
|
/// A grid spawned by a salvage magnet.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed class SalvageGridComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The magnet that spawned this grid.
|
|
/// </summary>
|
|
public SalvageMagnetComponent? SpawnerMagnet;
|
|
}
|
|
}
|