From ced3d03bdb3ce866d832e03fb212865140905a9a Mon Sep 17 00:00:00 2001 From: Thomas Leyh Date: Sun, 24 Jul 2016 08:14:18 +0200 Subject: Add project files. --- V3/Widgets/Label.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 V3/Widgets/Label.cs (limited to 'V3/Widgets/Label.cs') diff --git a/V3/Widgets/Label.cs b/V3/Widgets/Label.cs new file mode 100644 index 0000000..6b60d4b --- /dev/null +++ b/V3/Widgets/Label.cs @@ -0,0 +1,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; + } + } +} -- cgit v1.2.1