using Content.Shared.FixedPoint; using Robust.Shared.Serialization; namespace Content.Shared.Chemistry { /// /// Send by the client when setting the transfer amount using the BUI. /// [Serializable, NetSerializable] public sealed class TransferAmountSetValueMessage(FixedPoint2 value) : BoundUserInterfaceMessage { /// /// The new transfer amount. /// public FixedPoint2 Value = value; } [Serializable, NetSerializable] public enum TransferAmountUiKey { Key, } }