using Content.Client.Options.UI; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface; namespace Content.Client.Options.UI; /// /// Standard UI control used for color sliders in the options menu. Intended for use with . /// /// [GenerateTypedNameReferences] public sealed partial class OptionColorSlider : Control { /// /// The text describing what this slider affects. /// public string? Title { get => TitleLabel.Text; set => TitleLabel.Text = value; } /// /// The example text showing the current color of the slider. /// public string? Example { get => ExampleLabel.Text; set => ExampleLabel.Text = value; } }