mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 05:10:50 +01:00
12 lines
No EOL
336 B
C#
12 lines
No EOL
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;
|
|
}
|
|
|
|
}
|
|
} |