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