2017-05-23 13:11:37 +08:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2017-05-23 12:55:18 +08:00
|
|
|
using osu.Game.Beatmaps.Timing;
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps.ControlPoints
|
|
|
|
{
|
|
|
|
public class TimingControlPoint : ControlPoint
|
|
|
|
{
|
2017-05-23 13:11:37 +08:00
|
|
|
/// <summary>
|
|
|
|
/// The time signature at this control point.
|
|
|
|
/// </summary>
|
2017-05-23 12:55:18 +08:00
|
|
|
public TimeSignatures TimeSignature = TimeSignatures.SimpleQuadruple;
|
2017-05-23 13:11:37 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The beat length at this control point.
|
|
|
|
/// </summary>
|
2017-05-23 12:55:18 +08:00
|
|
|
public double BeatLength = 500;
|
|
|
|
}
|
|
|
|
}
|