Files
tbd-station-14/Content.Server/Ensnaring/Components/EnsnareableComponent.cs
2022-08-25 00:50:31 +10:00

16 lines
493 B
C#

using Content.Shared.Ensnaring.Components;
using Robust.Shared.Containers;
namespace Content.Server.Ensnaring.Components;
[RegisterComponent]
[ComponentReference(typeof(SharedEnsnareableComponent))]
public sealed class EnsnareableComponent : SharedEnsnareableComponent
{
/// <summary>
/// The container where the <see cref="EnsnaringComponent"/> entity will be stored
/// </summary>
[ViewVariables]
[DataField("container")]
public Container Container = default!;
}