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
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|