Files
tbd-station-14/Content.Shared/Stacks/StackVisuals.cs
2021-06-09 22:19:39 +02:00

22 lines
482 B
C#

#nullable enable
using System;
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
}
}