Split out CatcherArea nested classes and reorder methods

This commit is contained in:
Dean Herbert
2020-03-13 12:59:30 +09:00
parent 8fb41e4c67
commit 1733519c3a
10 changed files with 605 additions and 572 deletions

View File

@ -50,7 +50,7 @@ namespace osu.Game.Rulesets.Catch.Difficulty
{
float halfCatchWidth;
using (var catcher = new CatcherArea.Catcher(beatmap.BeatmapInfo.BaseDifficulty))
using (var catcher = new Catcher(beatmap.BeatmapInfo.BaseDifficulty))
{
halfCatchWidth = catcher.CatchWidth * 0.5f;
halfCatchWidth *= 0.8f; // We're only using 80% of the catcher's width to simulate imperfect gameplay.