summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/source/MonoGame.Extended.Gui/Controls/Label.cs
blob: b949148f7836abd050c393ac430edbd3d1614362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace MonoGame.Extended.Gui.Controls
{
    public class Label : ContentControl
    {
        public Label()
        {
        }

        public Label(string text = null) 
        {
            Content = text ?? string.Empty;
        }
    }
}