2020-02-19 14:28:14 +00: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.
|
|
|
|
|
|
2021-07-17 18:38:15 +00:00
|
|
|
|
using osu.Game.Localisation;
|
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
|
|
2020-02-19 14:28:14 +00:00
|
|
|
|
namespace osu.Game.Overlays.BeatmapListing
|
|
|
|
|
{
|
|
|
|
|
public class BeatmapListingHeader : OverlayHeader
|
|
|
|
|
{
|
2020-03-24 21:08:20 +00:00
|
|
|
|
protected override OverlayTitle CreateTitle() => new BeatmapListingTitle();
|
2020-02-19 14:28:14 +00:00
|
|
|
|
|
2020-03-24 21:08:20 +00:00
|
|
|
|
private class BeatmapListingTitle : OverlayTitle
|
2020-02-19 14:28:14 +00:00
|
|
|
|
{
|
|
|
|
|
public BeatmapListingTitle()
|
|
|
|
|
{
|
2021-07-17 18:38:15 +00:00
|
|
|
|
Title = PageTitleStrings.MainBeatmapsetsControllerIndex;
|
|
|
|
|
Description = HeaderDescriptionStrings.BeatmapListing;
|
2020-09-03 08:05:45 +00:00
|
|
|
|
IconTexture = "Icons/Hexacons/beatmap";
|
2020-02-19 14:28:14 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|