2020-02-19 22:28:14 +08:00
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.BeatmapListing
|
|
|
|
|
{
|
|
|
|
|
public class BeatmapListingHeader : OverlayHeader
|
|
|
|
|
{
|
2020-03-25 05:08:20 +08:00
|
|
|
|
protected override OverlayTitle CreateTitle() => new BeatmapListingTitle();
|
2020-02-19 22:28:14 +08:00
|
|
|
|
|
2020-03-25 05:08:20 +08:00
|
|
|
|
private class BeatmapListingTitle : OverlayTitle
|
2020-02-19 22:28:14 +08:00
|
|
|
|
{
|
|
|
|
|
public BeatmapListingTitle()
|
|
|
|
|
{
|
2020-03-25 05:08:20 +08:00
|
|
|
|
Title = "beatmap listing";
|
|
|
|
|
IconTexture = "Icons/changelog";
|
2020-02-19 22:28:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|