mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
16 lines
301 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |