Tidy up string output

This commit is contained in:
Dean Herbert
2019-10-28 12:31:38 +09:00
parent 1953aa64b6
commit 43ad4a3a3c
5 changed files with 11 additions and 6 deletions

View File

@ -24,6 +24,11 @@ namespace osu.Game.Beatmaps.ControlPoints
set => beatLength = MathHelper.Clamp(value, 6, 60000);
}
/// <summary>
/// The BPM at this control point.
/// </summary>
public double BPM => 60000 / BeatLength;
private double beatLength = DEFAULT_BEAT_LENGTH;
public override bool EquivalentTo(ControlPoint other) =>