Delta-v/Content.Server/Singularity/Components/ContainmentFieldComponent.cs

12 lines
287 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.Singularity.Components
{
[RegisterComponent]
public class ContainmentFieldComponent : Component
{
public override string Name => "ContainmentField";
public ContainmentFieldConnection? Parent;
}
}