mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
* Frontier Port: Pretty Money * Update Resources/Prototypes/Entities/Objects/Misc/space_cash.yml Co-authored-by: Whatstone <166147148+whatston3@users.noreply.github.com> Signed-off-by: Unkn0wn_Gh0st <shadowstalkermll@gmail.com> * Updated 100k texture --------- Signed-off-by: Unkn0wn_Gh0st <shadowstalkermll@gmail.com> Co-authored-by: Whatstone <166147148+whatston3@users.noreply.github.com> (cherry picked from commit da772611f8b2b02f21f801ccf255220602e850e5)
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>();
|
|
}
|