Files
MonoGame.Extended/Source/MonoGame.Extended.Gui/Controls/GuiPanel.cs
T

16 lines
301 B
C#

using MonoGame.Extended.TextureAtlases;
namespace MonoGame.Extended.Gui.Controls
{
public class GuiPanel : GuiControl
{
public GuiPanel()
{
}
public GuiPanel(TextureRegion2D backgroundRegion)
: base(backgroundRegion)
{
}
}
}