* Predicted gas pumps I wanted to try out atmos and first thing I found. * a * Remove details range
22 lines
551 B
C#
22 lines
551 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Atmos.Piping.Binary.Components;
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum GasPressurePumpUiKey : byte
|
|
{
|
|
Key,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class GasPressurePumpToggleStatusMessage(bool enabled) : BoundUserInterfaceMessage
|
|
{
|
|
public bool Enabled { get; } = enabled;
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class GasPressurePumpChangeOutputPressureMessage(float pressure) : BoundUserInterfaceMessage
|
|
{
|
|
public float Pressure { get; } = pressure;
|
|
}
|