1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-09-24 16:01:05 +02:00
MLEM/MLEM.Ui/Elements/VerticalSpace.cs

10 lines
No EOL
216 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)) {
}
}
}