mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-04 22:49:08 +01:00
10 lines
216 B
C#
10 lines
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)) {
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|