mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Privatise setters
This commit is contained in:
@ -46,14 +46,14 @@ namespace osu.Game.Screens.Play
|
|||||||
|
|
||||||
protected override bool PlayResumeSound => false;
|
protected override bool PlayResumeSound => false;
|
||||||
|
|
||||||
protected BeatmapMetadataDisplay MetadataInfo;
|
protected BeatmapMetadataDisplay MetadataInfo { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A fill flow containing the player settings groups, exposed for the ability to hide it from inheritors of the player loader.
|
/// A fill flow containing the player settings groups, exposed for the ability to hide it from inheritors of the player loader.
|
||||||
/// </summary>
|
/// </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; }
|
protected Task LoadTask { get; private set; }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user