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