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

16 lines
279 B
C#

using MonoGame.Extended.TextureAtlases;
namespace MonoGame.Extended.Gui.Controls
{
public class Image : Control
{
public Image()
{
}
public Image(TextureRegion2D image)
{
BackgroundRegion = image;
}
}
}