using System.Windows.Forms; namespace BizHawk.WinForms.Controls { /// Functions as a write-only collection of ITrackedRadioButtons. /// Elements should have unique Names; breaking this rule is UB, not checked at runtime. /// public interface IRadioButtonReadOnlyTracker { void Add(ITrackedRadioButton rb); void UpdateDeselected(string name); } }