Make UserHistoryGraph non-abstract

This commit is contained in:
Andrei Zavatski
2020-03-10 00:50:12 +03:00
parent f6461dc5f8
commit 2f441baeac
4 changed files with 24 additions and 22 deletions

View File

@ -74,7 +74,10 @@ namespace osu.Game.Overlays.Profile.Header.Components
private class RankGraphTooltip : UserGraphTooltip
{
protected override string TooltipCounterName => @"Global Ranking";
public RankGraphTooltip()
: base(@"Global Ranking")
{
}
public override bool SetContent(object content)
{