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