mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
15 lines
309 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |