19 lines
319 B
C#
19 lines
319 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Atmos.Visuals
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum GasVolumePumpVisuals : byte
|
|
{
|
|
State,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum GasVolumePumpState : byte
|
|
{
|
|
Off,
|
|
On,
|
|
Blocked,
|
|
}
|
|
}
|