1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-24 13:50:04 +02:00
MLEM/MLEM.Ui/Elements/Group.cs
2019-08-28 18:27:17 +02:00

12 lines
336 B
C#

using Microsoft.Xna.Framework;
namespace MLEM.Ui.Elements {
public class Group : Element {
public Group(Anchor anchor, Vector2 size, bool setHeightBasedOnChildren = true) : base(anchor, size) {
this.SetHeightBasedOnChildren = setHeightBasedOnChildren;
this.CanBeSelected = false;
}
}
}