1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:20:04 +08:00

Remove leftover approach circle skin component

This commit is contained in:
Salman Ahmed 2021-06-19 20:10:32 +03:00
parent c04b09520d
commit c3217fd8b1
2 changed files with 0 additions and 7 deletions

View File

@ -18,6 +18,5 @@ namespace osu.Game.Rulesets.Osu
SliderBall, SliderBall,
SliderBody, SliderBody,
SpinnerBody, SpinnerBody,
SpinnerApproachCircle,
} }
} }

View File

@ -121,12 +121,6 @@ namespace osu.Game.Rulesets.Osu.Skinning.Legacy
return new LegacyOldStyleSpinner(); return new LegacyOldStyleSpinner();
return null; return null;
case OsuSkinComponents.SpinnerApproachCircle:
if (Source.GetTexture("spinner-approachcircle") != null)
return new LegacySpinnerApproachCircle();
return null;
} }
} }