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