using Robust.Shared.Serialization; namespace Content.Shared.Atmos.Piping.Binary.Components; /// /// Represents the unique key for the UI. /// [Serializable, NetSerializable] public enum GasPressureRegulatorUiKey : byte { Key, } /// /// Message sent to change the pressure threshold of the gas pressure regulator. /// /// The new pressure threshold value. [Serializable, NetSerializable] public sealed class GasPressureRegulatorChangeThresholdMessage(float pressure) : BoundUserInterfaceMessage { /// /// Gets the new threshold pressure value. /// public float ThresholdPressure { get; } = pressure; }