mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Merge branch 'master' into more-inspections
This commit is contained in:
@ -23,7 +23,7 @@ namespace osu.Game.Screens.Select.Details
|
||||
|
||||
public BeatmapInfo Beatmap
|
||||
{
|
||||
get { return beatmap; }
|
||||
get => beatmap;
|
||||
set
|
||||
{
|
||||
if (value == beatmap) return;
|
||||
@ -85,15 +85,15 @@ namespace osu.Game.Screens.Select.Details
|
||||
|
||||
public string Title
|
||||
{
|
||||
get { return name.Text; }
|
||||
set { name.Text = value; }
|
||||
get => name.Text;
|
||||
set => name.Text = value;
|
||||
}
|
||||
|
||||
private float difficultyValue;
|
||||
|
||||
public float Value
|
||||
{
|
||||
get { return difficultyValue; }
|
||||
get => difficultyValue;
|
||||
set
|
||||
{
|
||||
difficultyValue = value;
|
||||
@ -104,8 +104,8 @@ namespace osu.Game.Screens.Select.Details
|
||||
|
||||
public Color4 AccentColour
|
||||
{
|
||||
get { return bar.AccentColour; }
|
||||
set { bar.AccentColour = value; }
|
||||
get => bar.AccentColour;
|
||||
set => bar.AccentColour = value;
|
||||
}
|
||||
|
||||
public StatisticRow(float maxValue = 10, bool forceDecimalPlaces = false)
|
||||
|
Reference in New Issue
Block a user