Files
MonoGame.Extended/Source/MonoGame.Extended.Gui/WindowCollection.cs
T
2018-03-05 22:06:57 +10:00

10 lines
215 B
C#

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