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

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;
}
}
}