2018-04-13 09:19:50 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Objects.Legacy.Mania
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Legacy osu!mania Hit-type, used for parsing Beatmaps.
|
|
|
|
|
/// </summary>
|
2018-08-15 01:57:11 +00:00
|
|
|
|
internal sealed class ConvertHit : HitObject, IHasXPosition
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
public float X { get; set; }
|
|
|
|
|
|
2018-05-17 04:35:06 +00:00
|
|
|
|
protected override HitWindows CreateHitWindows() => null;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|