mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 05:10:50 +01:00
11 lines
No EOL
256 B
C#
11 lines
No EOL
256 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MLEM.Ui.Elements {
|
|
public class VerticalSpace : Element {
|
|
|
|
public VerticalSpace(int height) : base(Anchor.AutoCenter, new Vector2(1, height)) {
|
|
this.CanBeSelected = false;
|
|
}
|
|
|
|
}
|
|
} |