mirror of
https://github.com/ppy/osu.git
synced 2026-05-21 18:10:40 +08:00
28 lines
774 B
C#
28 lines
774 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Database;
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
namespace osu.Game.Overlays.Music
|
|
{
|
|
public partial class Playlist : VirtualisedListContainer<Live<BeatmapSetInfo>, PlaylistItem>
|
|
{
|
|
public new MarginPadding Padding
|
|
{
|
|
get => base.Padding;
|
|
set => base.Padding = value;
|
|
}
|
|
|
|
public Playlist()
|
|
: base(20, 50)
|
|
{
|
|
}
|
|
|
|
protected override ScrollContainer<Drawable> CreateScrollContainer() => new OsuScrollContainer();
|
|
}
|
|
}
|