From 519ac01b9eec497dc14d789a8120bdb992fc6d9f Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 10 Aug 2019 13:44:48 +0200 Subject: [PATCH] added an empty group element --- MLEM.Ui/Elements/Group.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 MLEM.Ui/Elements/Group.cs diff --git a/MLEM.Ui/Elements/Group.cs b/MLEM.Ui/Elements/Group.cs new file mode 100644 index 0000000..77163b3 --- /dev/null +++ b/MLEM.Ui/Elements/Group.cs @@ -0,0 +1,10 @@ +using Microsoft.Xna.Framework; + +namespace MLEM.Ui.Elements { + public class Group : Element { + + public Group(Anchor anchor, Vector2 size) : base(anchor, size) { + } + + } +} \ No newline at end of file