mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
13 lines
368 B
C#
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;
|
|
}
|
|
}
|