// Copyright (c) 2007-2018 ppy Pty Ltd . // 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 { /// /// Legacy osu!mania Hit-type, used for parsing Beatmaps. /// internal sealed class ConvertHit : HitObject, IHasXPosition, IHasCombo { public float X { get; set; } public bool NewCombo { get; set; } protected override HitWindows CreateHitWindows() => new ConvertManiaHitWindows(); } }