Files
MonoGame.Extended/source/MonoGame.Extended.Gui/Controls/Label.cs
T
2024-05-18 19:59:41 -04:00

14 lines
249 B
C#

namespace MonoGame.Extended.Gui.Controls
{
public class Label : ContentControl
{
public Label()
{
}
public Label(string text = null)
{
Content = text ?? string.Empty;
}
}
}