1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 18:52:55 +08:00

Revert unnecessary changes

This commit is contained in:
Dean Herbert 2019-01-10 14:20:44 +09:00
parent 8cd058ed9a
commit 17bc933db2

View File

@ -27,16 +27,13 @@ namespace osu.Game.Rulesets.Osu.UI.Cursor
public GameplayCursor()
{
InternalChildren = new Drawable[]
InternalChild = fadeContainer = new Container
{
fadeContainer = new Container
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
new CursorTrail { Depth = 1 }
}
},
new CursorTrail { Depth = 1 }
}
};
}