From 86acc8498878a4aa3fbdee928381c1aaa75b4f53 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 13 Feb 2018 20:23:51 +0900 Subject: [PATCH] Apply formatting --- osu.Game/Beatmaps/BeatmapDifficulty.cs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/osu.Game/Beatmaps/BeatmapDifficulty.cs b/osu.Game/Beatmaps/BeatmapDifficulty.cs index 78cdf1b5ce..16e6692887 100644 --- a/osu.Game/Beatmaps/BeatmapDifficulty.cs +++ b/osu.Game/Beatmaps/BeatmapDifficulty.cs @@ -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;