1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 04:13:11 +08:00

Make setters private for protected containers

This commit is contained in:
Dean Herbert 2021-05-06 02:14:57 +09:00
parent fe9ade6754
commit cffeb8641f

View File

@ -48,9 +48,9 @@ namespace osu.Game.Screens.Select
private IBindable<StarDifficulty?> beatmapDifficulty; private IBindable<StarDifficulty?> beatmapDifficulty;
protected Container DisplayedContent; protected Container DisplayedContent { get; private set; }
protected WedgeInfoText Info; protected WedgeInfoText Info { get; private set; }
public BeatmapInfoWedge() public BeatmapInfoWedge()
{ {