mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Merge branch 'master' into more-inspections
This commit is contained in:
@ -157,7 +157,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
public Color4 ButtonColour
|
||||
{
|
||||
get { return buttonColour; }
|
||||
get => buttonColour;
|
||||
set
|
||||
{
|
||||
buttonColour = value;
|
||||
@ -170,7 +170,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
public Color4 BackgroundColour
|
||||
{
|
||||
get { return backgroundColour; }
|
||||
get => backgroundColour;
|
||||
set
|
||||
{
|
||||
backgroundColour = value;
|
||||
@ -182,7 +182,7 @@ namespace osu.Game.Graphics.UserInterface
|
||||
|
||||
public string Text
|
||||
{
|
||||
get { return text; }
|
||||
get => text;
|
||||
set
|
||||
{
|
||||
text = value;
|
||||
|
Reference in New Issue
Block a user