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