1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 04:02:59 +08:00

Fix item ordering

This commit is contained in:
ekrctb 2021-07-19 21:05:36 +09:00
parent 41169fbdaf
commit 81d0a9bd9c

View File

@ -16,8 +16,6 @@ namespace osu.Game.Rulesets.Catch.UI
{
public class CatchPlayfield : ScrollingPlayfield
{
private readonly BeatmapDifficulty difficulty;
/// <summary>
/// The width of the playfield.
/// The horizontal movement of the catcher is confined in the area of this width.
@ -37,6 +35,8 @@ namespace osu.Game.Rulesets.Catch.UI
internal CatcherArea CatcherArea { get; private set; }
private readonly BeatmapDifficulty difficulty;
public CatchPlayfield(BeatmapDifficulty difficulty)
{
this.difficulty = difficulty;