mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 07:42:57 +08:00
Apply formatting
This commit is contained in:
parent
5ecb77fda7
commit
86acc84988
@ -20,18 +20,15 @@ namespace osu.Game.Beatmaps
|
||||
public float DrainRate { get; set; } = DEFAULT_DIFFICULTY;
|
||||
public float CircleSize { get; set; } = DEFAULT_DIFFICULTY;
|
||||
public float OverallDifficulty { get; set; } = DEFAULT_DIFFICULTY;
|
||||
|
||||
private float? approachRate;
|
||||
|
||||
public float ApproachRate
|
||||
{
|
||||
get
|
||||
{
|
||||
return approachRate ?? OverallDifficulty;
|
||||
}
|
||||
set
|
||||
{
|
||||
approachRate = value;
|
||||
}
|
||||
get => approachRate ?? OverallDifficulty;
|
||||
set => approachRate = value;
|
||||
}
|
||||
|
||||
public float SliderMultiplier { get; set; } = 1;
|
||||
public float SliderTickRate { get; set; } = 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user