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:
parent
2cf43dc4d4
commit
587e4bb5d5
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user