Files
tbd-station-14/Content.Server/Singularity/Components/ContainmentFieldComponent.cs
2022-02-16 18:23:23 +11:00

13 lines
368 B
C#

using Content.Shared.Singularity.Components;
using Robust.Shared.GameObjects;
namespace Content.Server.Singularity.Components
{
[RegisterComponent]
[ComponentReference(typeof(SharedContainmentFieldComponent))]
public sealed class ContainmentFieldComponent : SharedContainmentFieldComponent
{
public ContainmentFieldConnection? Parent;
}
}