1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-04 06:13:36 +02:00

added an empty group element

This commit is contained in:
Ellpeck 2019-08-10 13:44:48 +02:00
parent 3f7f06f98f
commit 519ac01b9e

10
MLEM.Ui/Elements/Group.cs Normal file
View file

@ -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) {
}
}
}