From f737090c6b510817cf7879fd500c23246241a73f Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 12 Oct 2016 15:28:28 +0900 Subject: [PATCH] Make CentreTarget public. --- osu.Game/GameModes/Menu/FlowContainerWithOrigin.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/GameModes/Menu/FlowContainerWithOrigin.cs b/osu.Game/GameModes/Menu/FlowContainerWithOrigin.cs index e935f353d8..a618e81e1f 100644 --- a/osu.Game/GameModes/Menu/FlowContainerWithOrigin.cs +++ b/osu.Game/GameModes/Menu/FlowContainerWithOrigin.cs @@ -11,9 +11,9 @@ namespace osu.Game.GameModes.Menu { /// /// A target drawable which this flowcontainer should be centered around. - /// This target MUST be in this FlowContainer's *direct* children. + /// This target should be a direct child of this FlowContainer. /// - internal Drawable CentreTarget; + public Drawable CentreTarget; public override Anchor Origin => Anchor.Custom;