mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
14 lines
239 B
C#
14 lines
239 B
C#
namespace MonoGame.Extended.Gui.Controls
|
|
{
|
|
public class Label : Control
|
|
{
|
|
public Label()
|
|
{
|
|
}
|
|
|
|
public Label(string text = null)
|
|
{
|
|
Text = text ?? string.Empty;
|
|
}
|
|
}
|
|
} |