1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:07:25 +08:00

Remove unnecessary getters from ScreenTitle

This commit is contained in:
Dean Herbert 2019-05-21 11:13:36 +09:00
parent 2cf43dc4d4
commit 587e4bb5d5

View File

@ -19,19 +19,16 @@ namespace osu.Game.Graphics.UserInterface
protected IconUsage Icon protected IconUsage Icon
{ {
get => iconSprite.Icon;
set => iconSprite.Icon = value; set => iconSprite.Icon = value;
} }
protected string Title protected string Title
{ {
get => titleText.Text;
set => titleText.Text = value; set => titleText.Text = value;
} }
protected string Section protected string Section
{ {
get => pageText.Text;
set => pageText.Text = value; set => pageText.Text = value;
} }