Files
tbd-station-14/Content.Shared/Atmos/Piping/Unary/Components/SharedGasPortableComponent.cs
2022-05-13 17:59:03 +10:00

14 lines
345 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Atmos.Piping.Unary.Components
{
/// <summary>
/// Used in <see cref="GasPortableVisualizer"/> to determine which visuals to update.
/// </summary>
[Serializable, NetSerializable]
public enum GasPortableVisuals
{
ConnectedState,
}
}