mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 09:03:50 +09:00
Update to match framework.
This commit is contained in:
Submodule osu-framework updated: e5f0cf73c1...f9f962ac73
@ -11,6 +11,6 @@ namespace osu.Game.Graphics.Containers
|
|||||||
public class ReverseDepthFillFlowContainer<T> : FillFlowContainer<T> where T : Drawable
|
public class ReverseDepthFillFlowContainer<T> : FillFlowContainer<T> where T : Drawable
|
||||||
{
|
{
|
||||||
protected override IComparer<Drawable> DepthComparer => new ReverseCreationOrderDepthComparer();
|
protected override IComparer<Drawable> DepthComparer => new ReverseCreationOrderDepthComparer();
|
||||||
protected override IEnumerable<T> FlowingChildren => base.FlowingChildren.Reverse();
|
protected override IEnumerable<Drawable> FlowingChildren => base.FlowingChildren.Reverse();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user