mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Expose generic version of OsuScrollContainer
This commit is contained in:
@ -12,7 +12,19 @@ using osuTK.Input;
|
||||
|
||||
namespace osu.Game.Graphics.Containers
|
||||
{
|
||||
public class OsuScrollContainer : ScrollContainer<Drawable>
|
||||
public class OsuScrollContainer : OsuScrollContainer<Drawable>
|
||||
{
|
||||
public OsuScrollContainer()
|
||||
{
|
||||
}
|
||||
|
||||
public OsuScrollContainer(Direction direction)
|
||||
: base(direction)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public class OsuScrollContainer<T> : ScrollContainer<T> where T : Drawable
|
||||
{
|
||||
public const float SCROLL_BAR_HEIGHT = 10;
|
||||
public const float SCROLL_BAR_PADDING = 3;
|
||||
|
Reference in New Issue
Block a user