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.
|
|
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
{
|
2020-03-24 21:08:20 +00:00
|
|
|
|
Title = "beatmap listing";
|
2020-09-06 17:13:06 +00:00
|
|
|
|
Description = "browse for new beatmaps";
|
2020-09-03 08:05:45 +00:00
|
|
|
|
IconTexture = "Icons/Hexacons/beatmap";
|
2020-02-19 14:28:14 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|