1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-15 13:48:46 +02:00
MLEM/MLEM.Ui/Elements/VerticalSpace.cs
2022-06-17 18:23:47 +02:00

20 lines
683 B
C#

using Microsoft.Xna.Framework;
namespace MLEM.Ui.Elements {
/// <summary>
/// A vertical space element for use inside of a <see cref="UiSystem"/>.
/// A vertical space is an invisible element that can be used to add vertical space between paragraphs or other elements.
/// </summary>
public class VerticalSpace : Element {
/// <summary>
/// Creates a new vertical space with the given settings
/// </summary>
/// <param name="height">The height of the vertical space</param>
public VerticalSpace(float height) : base(Anchor.AutoCenter, new Vector2(1, height)) {
this.CanBeSelected = false;
}
}
}