14 lines
459 B
C#
14 lines
459 B
C#
namespace Content.Shared.Stacks.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class StackLayerThresholdComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// A list of thresholds to check against the number of things in the stack.
|
|
/// Each exceeded threshold will cause the next layer to be displayed.
|
|
/// Should be sorted in ascending order.
|
|
/// </summary>
|
|
[DataField(required: true)]
|
|
public List<int> Thresholds = new List<int>();
|
|
}
|