Added IgnoreTooltip to all classes required

This commit is contained in:
Ninjaprawn
2017-12-08 13:53:49 +11:00
parent f5bea077a0
commit 9b3e666a07
12 changed files with 13 additions and 0 deletions

View File

@ -29,6 +29,7 @@ namespace osu.Game.Rulesets.UI
private readonly ModType type;
public string TooltipText { get; }
public virtual bool IgnoreTooltip { get; }
public ModIcon(Mod mod)
{
@ -37,6 +38,7 @@ namespace osu.Game.Rulesets.UI
type = mod.Type;
TooltipText = mod.Name;
IgnoreTooltip = false;
Size = new Vector2(size);