Files
MonoGame.Extended/Source/MonoGame.Extended.Gui/ScreenCollection.cs
T

10 lines
221 B
C#

namespace MonoGame.Extended.Gui
{
public class ScreenCollection : ElementCollection<Screen, GuiSystem>
{
public ScreenCollection(GuiSystem parent)
: base(parent)
{
}
}
}