dropped the gui prefix on most of the gui stuff

This commit is contained in:
Dylan Wilson
2018-03-05 22:06:57 +10:00
parent c9a4cf37a9
commit 0c8ccf5125
41 changed files with 314 additions and 317 deletions
@@ -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)
{
}
}
}