// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Beatmaps.Timing; namespace osu.Game.Beatmaps.ControlPoints { public class TimingControlPoint : ControlPoint { /// /// The time signature at this control point. /// public TimeSignatures TimeSignature = TimeSignatures.SimpleQuadruple; /// /// The beat length at this control point. /// public double BeatLength = 1000; } }