using Robust.Client.AutoGenerated; using Robust.Client.UserInterface; namespace Content.Client.Options.UI; /// /// Standard UI control used for sliders in the options menu. Intended for use with . /// /// /// [GenerateTypedNameReferences] public sealed partial class OptionSlider : Control { /// /// The text describing what this slider controls. /// public string? Title { get => NameLabel.Text; set => NameLabel.Text = value; } }