15 lines
256 B
C#
15 lines
256 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Atmos.Visuals;
|
|
|
|
/// <summary>
|
|
/// Used for the visualizer
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public enum PortableScrubberVisuals : byte
|
|
{
|
|
IsFull,
|
|
IsRunning,
|
|
IsDraining,
|
|
}
|