1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 10:59:59 +08:00

18 lines
545 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
2017-03-14 13:02:42 +09:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-04-18 16:05:58 +09:00
using osu.Game.Rulesets.Objects.Types;
2017-04-18 16:05:58 +09:00
namespace osu.Game.Rulesets.Objects.Legacy.Catch
{
/// <summary>
2017-04-18 09:13:36 +09:00
/// Legacy osu!catch Spinner-type, used for parsing Beatmaps.
/// </summary>
internal sealed class ConvertSpinner : HitObject, IHasEndTime
{
public double EndTime { get; set; }
public double Duration => EndTime - StartTime;
}
}