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

16 lines
309 B
C#

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