1
0

StackVisuals.cs 451 B

12345678910111213141516171819
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Stacks
  3. {
  4. [Serializable, NetSerializable]
  5. public enum StackVisuals : byte
  6. {
  7. /// <summary>
  8. /// The amount of elements in the stack
  9. /// </summary>
  10. Actual,
  11. /// <summary>
  12. /// The total amount of elements in the stack. If unspecified, the visualizer assumes
  13. /// its
  14. /// </summary>
  15. MaxCount,
  16. Hide
  17. }
  18. }