From c83c3e92fcebfe9793633ed1b55fa330ab4028a0 Mon Sep 17 00:00:00 2001 From: Firmatorenio Date: Mon, 14 Dec 2020 01:50:25 +0600 Subject: [PATCH] apply a private setter in a protected property --- osu.Game/Rulesets/UI/Scrolling/ScrollingPlayfield.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osu.Game/Rulesets/UI/Scrolling/ScrollingPlayfield.cs b/osu.Game/Rulesets/UI/Scrolling/ScrollingPlayfield.cs index e611f09dcf..7259bf293c 100644 --- a/osu.Game/Rulesets/UI/Scrolling/ScrollingPlayfield.cs +++ b/osu.Game/Rulesets/UI/Scrolling/ScrollingPlayfield.cs @@ -18,8 +18,7 @@ namespace osu.Game.Rulesets.UI.Scrolling [Resolved] protected IScrollingInfo ScrollingInfo { get; private set; } - - protected ISkinSource CurrentSkin; + protected ISkinSource CurrentSkin { get; private set; } [BackgroundDependencyLoader] private void load(ISkinSource skin)