Revert "Remove empty override"

This reverts commit a86a4bab91.
This commit is contained in:
PercyDan54 2021-05-15 11:37:04 +08:00
parent 63ac430386
commit 6e5c4ed7c6
No known key found for this signature in database
GPG Key ID: 6AEA7C525131BAF3

View File

@ -2,6 +2,7 @@
// See the LICENCE file in the repository root for full licence text.
using osu.Game.Graphics;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Framework.Graphics.Sprites;
using osu.Game.Rulesets.Scoring;
using osu.Game.Scoring;
@ -36,5 +37,13 @@ namespace osu.Game.Rulesets.Mods
return rank;
}
}
protected override void ApplyIncreasedVisibilityState(DrawableHitObject hitObject, ArmedState state)
{
}
protected override void ApplyNormalVisibilityState(DrawableHitObject hitObject, ArmedState state)
{
}
}
}