Allow TimingControlPoint to be overridden

This commit is contained in:
smoogipoo
2018-10-09 11:34:38 +09:00
parent f8eaccddda
commit b7499fa956
2 changed files with 9 additions and 7 deletions

View File

@ -16,7 +16,7 @@ namespace osu.Game.Beatmaps.ControlPoints
/// <summary>
/// The beat length at this control point.
/// </summary>
public double BeatLength
public virtual double BeatLength
{
get => beatLength;
set => beatLength = MathHelper.Clamp(value, 6, 60000);