1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-26 14:41:41 +02:00
MLEM/MLEM.Ui/Elements/Group.cs

11 lines
226 B
C#
Raw Normal View History

2019-08-10 13:44:48 +02:00
using Microsoft.Xna.Framework;
namespace MLEM.Ui.Elements {
public class Group : Element {
public Group(Anchor anchor, Vector2 size) : base(anchor, size) {
2019-08-10 18:41:56 +02:00
this.IgnoresMouse = true;
2019-08-10 13:44:48 +02:00
}
}
}