2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-03-14 12:02:42 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2017-03-13 18:15:25 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Objects.Legacy.Mania
|
2017-03-13 18:15:25 +08:00
|
|
|
|
{
|
2017-03-14 17:06:32 +08:00
|
|
|
|
/// <summary>
|
2017-04-18 08:13:36 +08:00
|
|
|
|
/// Legacy osu!mania Spinner-type, used for parsing Beatmaps.
|
2017-03-14 17:06:32 +08:00
|
|
|
|
/// </summary>
|
2017-04-22 20:33:11 +08:00
|
|
|
|
internal sealed class ConvertSpinner : HitObject, IHasEndTime, IHasXPosition
|
2017-03-13 18:15:25 +08:00
|
|
|
|
{
|
|
|
|
|
public double EndTime { get; set; }
|
|
|
|
|
|
|
|
|
|
public double Duration => EndTime - StartTime;
|
2017-04-17 14:44:46 +08:00
|
|
|
|
|
2017-04-18 10:13:11 +08:00
|
|
|
|
public float X { get; set; }
|
2017-03-13 18:15:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|