Files
OldThink/Content.Shared/Stacks/StackVisuals.cs

20 lines
451 B
C#
Raw Normal View History

using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Stacks
{
[Serializable, NetSerializable]
public enum StackVisuals : byte
{
/// <summary>
/// The amount of elements in the stack
/// </summary>
Actual,
/// <summary>
/// The total amount of elements in the stack. If unspecified, the visualizer assumes
2021-06-09 22:19:39 +02:00
/// its
/// </summary>
MaxCount,
Hide
}
}