mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* Implement gridinv, 1500 squashed commits :elp: * Me when * Linter errors * Fix katana belts
15 lines
469 B
C#
15 lines
469 B
C#
namespace Content.Shared.ContainerHeld;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class ContainerHeldComponent: Component
|
|
{
|
|
/// <summary>
|
|
/// 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".
|
|
/// </summary>
|
|
[DataField("threshold")]
|
|
public int Threshold { get; private set; } = 1;
|
|
}
|