1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-07 20:42:54 +08:00

Privatise protected property setters

This commit is contained in:
Dean Herbert 2021-02-02 19:14:44 +09:00
parent bc8a4f4111
commit 41593ff09e

View File

@ -11,8 +11,8 @@ namespace osu.Game.Graphics.UserInterface
{ {
public class GrayButton : OsuAnimatedButton public class GrayButton : OsuAnimatedButton
{ {
protected SpriteIcon Icon; protected SpriteIcon Icon { get; private set; }
protected Box Background; protected Box Background { get; private set; }
private readonly IconUsage icon; private readonly IconUsage icon;