Remove unused classes and replace overlay in game

This commit is contained in:
Dean Herbert
2020-04-21 16:00:00 +09:00
parent 594cef1473
commit 1cec0575b7
17 changed files with 57 additions and 728 deletions

View File

@ -0,0 +1,22 @@
// 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.Allocation;
using osu.Game.Graphics;
namespace osu.Game.Overlays.Toolbar
{
public class ToolbarBeatmapListingButton : ToolbarOverlayToggleButton
{
public ToolbarBeatmapListingButton()
{
SetIcon(OsuIcon.ChevronDownCircle);
}
[BackgroundDependencyLoader(true)]
private void load(BeatmapListingOverlay beatmapListing)
{
StateContainer = beatmapListing;
}
}
}