hide cursor in catch

This commit is contained in:
Dylan Nantz
2022-12-12 21:18:01 -05:00
parent 5800734589
commit 0dd4e0cf94
2 changed files with 3 additions and 9 deletions

View File

@ -52,13 +52,7 @@ namespace osu.Game.Rulesets.Catch.UI
this.difficulty = difficulty;
}
protected override GameplayCursorContainer CreateCursor()
{
if (Mods != null && Mods.Any(m => m is ModRelax))
return new CatchRelaxCursorContainer();
return base.CreateCursor();
}
protected override GameplayCursorContainer CreateCursor() => new CatchCursorContainer();
[BackgroundDependencyLoader]
private void load()