mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
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,
|
|
}
|