General work towards completion + framework updates

This commit is contained in:
smoogipoo
2020-01-29 12:17:03 +09:00
parent 2b2cfd91a6
commit ebf15c6a1c
4 changed files with 200 additions and 17 deletions

View File

@ -2,6 +2,7 @@
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
@ -15,6 +16,12 @@ namespace osu.Game.Tests.Visual.UserInterface
{
public class TestScenePlaylistOverlay : OsuTestScene
{
public override IReadOnlyList<Type> RequiredTypes => new Type[]
{
typeof(PlaylistOverlay),
typeof(PlaylistList)
};
private readonly BindableList<BeatmapSetInfo> beatmapSets = new BindableList<BeatmapSetInfo>();
[SetUp]