Fix line endings.

This commit is contained in:
smoogipooo
2017-05-23 16:13:51 +09:00
parent 1867cbb381
commit 7e5bb61a44

View File

@ -1,23 +1,23 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Rulesets.Mania.Timing namespace osu.Game.Rulesets.Mania.Timing
{ {
public class TimingChange public class TimingChange
{ {
/// <summary> /// <summary>
/// The time at which this timing change happened. /// The time at which this timing change happened.
/// </summary> /// </summary>
public double Time; public double Time;
/// <summary> /// <summary>
/// The beat length. /// The beat length.
/// </summary> /// </summary>
public double BeatLength = 500; public double BeatLength = 500;
/// <summary> /// <summary>
/// The speed multiplier. /// The speed multiplier.
/// </summary> /// </summary>
public double SpeedMultiplier = 1; public double SpeedMultiplier = 1;
} }
} }