namespace BizHawk.WinForms.Controls { public interface ITrackedRadioButton { /// Does not declare a setter intentionally, use . bool Checked { get; } string Name { get; } object Tag { get; } void UncheckFromTracker(); } }