Move ModIcon tooltip to base implementation

This commit is contained in:
Dean Herbert
2017-10-13 19:14:43 +09:00
parent 146d800bda
commit ead88224c5
2 changed files with 7 additions and 13 deletions

View File

@ -16,8 +16,8 @@ using System.Diagnostics;
using osu.Framework.Localisation;
using System.Globalization;
using osu.Game.Rulesets.Scoring;
using osu.Framework.Graphics.Cursor;
using System;
using osu.Game.Rulesets.UI;
namespace osu.Game.Overlays.Profile.Sections.Ranks
{
@ -158,16 +158,5 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
yield return new Vector2(DrawWidth * i * (count == 1 ? 0 : 1f / (count - 1)), 0);
}
}
private class ModIcon : Rulesets.UI.ModIcon, IHasTooltip
{
public ModIcon(Mod mod)
: base(mod)
{
TooltipText = mod.Name;
}
public string TooltipText { get; }
}
}
}