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
|
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps.Timing
|
|
|
|
|
{
|
|
|
|
|
public class ControlPoint
|
|
|
|
|
{
|
2017-04-06 10:41:16 +08:00
|
|
|
|
public string SampleBank;
|
|
|
|
|
public int SampleVolume;
|
2017-05-11 19:04:45 +08:00
|
|
|
|
public TimeSignatures TimeSignature = TimeSignatures.SimpleQuadruple;
|
2016-08-31 12:51:00 +08:00
|
|
|
|
public double Time;
|
2017-04-06 12:15:12 +08:00
|
|
|
|
public double BeatLength = 500;
|
|
|
|
|
public double SpeedMultiplier = 1;
|
|
|
|
|
public bool TimingChange = true;
|
2017-03-07 09:59:19 +08:00
|
|
|
|
public bool KiaiMode;
|
2017-03-17 12:23:39 +08:00
|
|
|
|
public bool OmitFirstBarLine;
|
2017-04-05 11:05:48 +08:00
|
|
|
|
|
|
|
|
|
public ControlPoint Clone() => (ControlPoint)MemberwiseClone();
|
2016-08-31 12:51:00 +08:00
|
|
|
|
}
|
|
|
|
|
}
|