namespace MonoGame.Extended.Gui.Controls { public class ControlCollection : ElementCollection { public ControlCollection() : base(null) { } public ControlCollection(Control parent) : base(parent) { } } }