2017-02-07 12:59:30 +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
|
2016-08-31 12:51:00 +08:00
|
|
|
|
|
2017-04-04 12:11:04 +08:00
|
|
|
|
using osu.Game.Beatmaps.Samples;
|
|
|
|
|
|
2016-08-31 12:51:00 +08:00
|
|
|
|
namespace osu.Game.Beatmaps.Timing
|
|
|
|
|
{
|
|
|
|
|
public class ControlPoint
|
|
|
|
|
{
|
2017-02-18 14:54:16 +08:00
|
|
|
|
public static ControlPoint Default = new ControlPoint
|
|
|
|
|
{
|
|
|
|
|
BeatLength = 500,
|
|
|
|
|
TimingChange = true,
|
|
|
|
|
};
|
|
|
|
|
|
2017-04-05 20:59:07 +08:00
|
|
|
|
public SampleBank SampleBank;
|
2017-03-21 20:18:08 +08:00
|
|
|
|
public TimeSignatures TimeSignature;
|
2016-08-31 12:51:00 +08:00
|
|
|
|
public double Time;
|
2016-11-28 14:12:11 +08:00
|
|
|
|
public double BeatLength;
|
|
|
|
|
public double VelocityAdjustment;
|
|
|
|
|
public bool TimingChange;
|
2017-03-07 09:59:19 +08:00
|
|
|
|
public bool KiaiMode;
|
2017-03-17 12:23:39 +08:00
|
|
|
|
public bool OmitFirstBarLine;
|
2016-08-31 12:51:00 +08:00
|
|
|
|
}
|
|
|
|
|
}
|