mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-04 22:49:08 +01:00
11 lines
No EOL
226 B
C#
11 lines
No EOL
226 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MLEM.Ui.Elements {
|
|
public class Group : Element {
|
|
|
|
public Group(Anchor anchor, Vector2 size) : base(anchor, size) {
|
|
this.IgnoresMouse = true;
|
|
}
|
|
|
|
}
|
|
} |