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