aboutsummaryrefslogtreecommitdiff
path: root/V3/Widgets/Label.cs
blob: 6b60d4b9e0c77657393bc5aac41c7eab46839438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using Microsoft.Xna.Framework.Content;

namespace V3.Widgets
{
    // ReSharper disable once ClassNeverInstantiated.Global
    public sealed class Label : AbstractTextWidget
    {
        public Label(ContentManager contentManager) : base(contentManager)
        {
            HorizontalOrientation = HorizontalOrientation.Left;
            PaddingX = 20;
        }
    }
}