Add basic ControlPoint parsing.

This commit is contained in:
Dean Herbert
2016-11-28 15:12:11 +09:00
parent e271bcec63
commit a5651427f6
2 changed files with 31 additions and 3 deletions

View File

@ -12,5 +12,14 @@ namespace osu.Game.Beatmaps.Timing
public class ControlPoint
{
public double Time;
public double BeatLength;
public double VelocityAdjustment;
public bool TimingChange;
}
internal enum TimeSignatures
{
SimpleQuadruple = 4,
SimpleTriple = 3
}
}