Privatise setters

This commit is contained in:
smoogipoo 2021-08-17 13:44:21 +09:00
parent 8d45f86bd3
commit 081524b6c8
1 changed files with 3 additions and 3 deletions

View File

@ -46,14 +46,14 @@ public class PlayerLoader : ScreenWithBeatmapBackground
protected override bool PlayResumeSound => false;
protected BeatmapMetadataDisplay MetadataInfo;
protected BeatmapMetadataDisplay MetadataInfo { get; private set; }
/// <summary>
/// A fill flow containing the player settings groups, exposed for the ability to hide it from inheritors of the player loader.
/// </summary>
protected FillFlowContainer<PlayerSettingsGroup> PlayerSettings;
protected FillFlowContainer<PlayerSettingsGroup> PlayerSettings { get; private set; }
protected VisualSettings VisualSettings;
protected VisualSettings VisualSettings { get; private set; }
protected Task LoadTask { get; private set; }