| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using Robust.Shared.Serialization;
- namespace Content.Shared.Atmos.Piping.Binary.Components
- {
- public sealed record GasVolumePumpData(float LastMolesTransferred);
- [Serializable, NetSerializable]
- public enum GasVolumePumpUiKey
- {
- Key,
- }
- [Serializable, NetSerializable]
- public sealed class GasVolumePumpBoundUserInterfaceState : BoundUserInterfaceState
- {
- public string PumpLabel { get; }
- public float TransferRate { get; }
- public bool Enabled { get; }
- public GasVolumePumpBoundUserInterfaceState(string pumpLabel, float transferRate, bool enabled)
- {
- PumpLabel = pumpLabel;
- TransferRate = transferRate;
- Enabled = enabled;
- }
- }
- [Serializable, NetSerializable]
- public sealed class GasVolumePumpToggleStatusMessage : BoundUserInterfaceMessage
- {
- public bool Enabled { get; }
- public GasVolumePumpToggleStatusMessage(bool enabled)
- {
- Enabled = enabled;
- }
- }
- [Serializable, NetSerializable]
- public sealed class GasVolumePumpChangeTransferRateMessage : BoundUserInterfaceMessage
- {
- public float TransferRate { get; }
- public GasVolumePumpChangeTransferRateMessage(float transferRate)
- {
- TransferRate = transferRate;
- }
- }
- }
|