Files
MonoGame.Extended/source/MonoGame.Extended.Gui/Controls/ControlCollection.cs
T

15 lines
309 B
C#

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