1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-24 13:50:04 +02:00
MLEM/MLEM.Ui/Elements/Slider.cs
2019-08-16 19:08:36 +02:00

11 lines
268 B
C#

using Microsoft.Xna.Framework;
namespace MLEM.Ui.Elements {
public class Slider : ScrollBar {
public Slider(Anchor anchor, Vector2 size, int scrollerSize, float maxValue) :
base(anchor, size, scrollerSize, maxValue, true) {
}
}
}