mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
dropped the gui prefix on most of the gui stuff
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace MonoGame.Extended.Gui.Controls
|
||||
{
|
||||
public class ControlCollection : ElementCollection<Control, Control>
|
||||
{
|
||||
public ControlCollection()
|
||||
: base(null)
|
||||
{
|
||||
}
|
||||
|
||||
public ControlCollection(Control parent)
|
||||
: base(parent)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user