using Content.Shared.MedicalScanner; namespace Content.Client.HealthAnalyzer.UI.Tooltips; public sealed partial class SpO2Tooltip : UpdatableTooltip { public override void Update(HealthAnalyzerScannedUserMessage msg) { if (msg.WoundableData is not { } woundable) return; Label.Text = Loc.GetString("health-analyzer-spo2-tooltip", ("gas", woundable.Spo2GasName), ("spo2", woundable.Spo2Name)); } }