mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
added an empty group element
This commit is contained in:
parent
3f7f06f98f
commit
519ac01b9e
1 changed files with 10 additions and 0 deletions
10
MLEM.Ui/Elements/Group.cs
Normal file
10
MLEM.Ui/Elements/Group.cs
Normal 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) {
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue