20 lines
451 B
C#
20 lines
451 B
C#
using Robust.Shared.Serialization;
|
|
|
|
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
|
|
/// its
|
|
/// </summary>
|
|
MaxCount,
|
|
Hide
|
|
}
|
|
}
|