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`.
14 lines
438 B
C#
14 lines
438 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.
|
|
|
|
namespace osu.Game.Rulesets.Objects.Legacy
|
|
{
|
|
/// <summary>
|
|
/// Legacy "HitCircle" hit object type.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Only used for parsing beatmaps and not gameplay.
|
|
/// </remarks>
|
|
internal sealed class ConvertHitCircle : ConvertHitObject;
|
|
}
|