1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-16 18:54:31 +02:00
MLEM/MLEM.Ui/Elements/VerticalSpace.cs

20 lines
683 B
C#
Raw Normal View History

using Microsoft.Xna.Framework;
namespace MLEM.Ui.Elements {
2020-05-22 17:02:24 +02:00
/// <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 {
2020-05-22 17:02:24 +02:00
/// <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)) {
2019-08-28 18:27:17 +02:00
this.CanBeSelected = false;
}
}
2022-06-17 18:23:47 +02:00
}