Remove unnecessary getters from ScreenTitle

This commit is contained in:
Dean Herbert 2019-05-21 11:13:36 +09:00
parent 6a8a743eaa
commit 6c26d6fdf9

View File

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