mirror of
https://github.com/ppy/osu
synced 2025-01-09 15:49:32 +00:00
e1d93a7d9c
Having these be separate implementations sounded awesome at the time, but it only ever led to confusion. There's no practical difference if, for example, catch sees hitobjects with `IHasPosition` instead of `IHasXPosition`.
21 lines
637 B
C#
21 lines
637 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
namespace osu.Game.Rulesets.Objects.Legacy
|
|
{
|
|
/// <summary>
|
|
/// Legacy "Hold" hit object type. Generally only valid in the mania ruleset.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Only used for parsing beatmaps and not gameplay.
|
|
/// </remarks>
|
|
internal sealed class ConvertHold : ConvertHitObject, IHasDuration
|
|
{
|
|
public double Duration { get; set; }
|
|
|
|
public double EndTime => StartTime + Duration;
|
|
}
|
|
}
|