* Procgen asteroids for salvage magnet * big roids, remove min offset radius * i fuck with configs a bit more * some shit i guess * actually this makes more sense
15 lines
347 B
C#
15 lines
347 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 EntityUid? SpawnerMagnet;
|
|
}
|
|
}
|