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