mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
16 lines
303 B
C#
16 lines
303 B
C#
using MonoGame.Extended.TextureAtlases;
|
|
|
|
namespace MonoGame.Extended.Gui.Controls
|
|
{
|
|
public class GuiImage : GuiControl
|
|
{
|
|
public GuiImage()
|
|
{
|
|
}
|
|
|
|
public GuiImage(TextureRegion2D textureRegion)
|
|
: base(textureRegion)
|
|
{
|
|
}
|
|
}
|
|
} |