namespace Content.Shared.ContainerHeld; [RegisterComponent] public sealed partial class ContainerHeldComponent: Component { /// /// The amount of weight needed to be in the container /// in order for it to toggle it's appearance /// to ToggleVisuals.Toggled = true, and /// SetHeldPrefix() to "full" instead of "empty". /// [DataField("threshold")] public int Threshold { get; private set; } = 1; }