12 lines
335 B
C#
12 lines
335 B
C#
using Content.Shared.Singularity.Components;
|
|
|
|
namespace Content.Server.Singularity.Components
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedContainmentFieldComponent))]
|
|
public sealed class ContainmentFieldComponent : SharedContainmentFieldComponent
|
|
{
|
|
public ContainmentFieldConnection? Parent;
|
|
}
|
|
}
|